home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / PDESAMPL.BIN / jni2.mak < prev    next >
Text File  |  1997-09-08  |  588b  |  41 lines

  1. #
  2. #  define CC to cl if you are using Microsoft's Visual C/C++ compiler.
  3. #
  4.  
  5. CC = sc
  6. SRCS = src\jni2.cpp 
  7. INCL = -I..\..\..\..\java\include -I..\..\..\..\java\include\win32 
  8.  
  9. #  
  10. # if using Microsoft's Visual C/C++ compiler or
  11. !if "$(CC)" == "cl"
  12.  
  13. CC_FLAGS = -MT $(INCL)
  14.  
  15. !else
  16. #  
  17. # using Symantec's C/C++ compiler
  18. !if "$(CC)" == "sc"
  19.  
  20. CC_FLAGS = -mn $(INCL)
  21.  
  22. !endif
  23.  
  24. !endif
  25.  
  26. default :
  27.         $(CC) $(SRCS) $(CC_FLAGS)
  28.  
  29. all : clean default
  30.  
  31.  
  32. clean :
  33.         del *.map
  34.         del *.exe
  35.         del *.obj
  36.         del *.exp
  37.         del *.def
  38.  
  39.