home *** CD-ROM | disk | FTP | other *** search
- #
- # define CC to cl if you are using Microsoft's Visual C/C++ compiler.
- #
-
- CC = sc
- SRCS = src\jni2.cpp
- INCL = -I..\..\..\..\java\include -I..\..\..\..\java\include\win32
-
- #
- # if using Microsoft's Visual C/C++ compiler or
- #
- !if "$(CC)" == "cl"
-
- CC_FLAGS = -MT $(INCL)
-
- !else
- #
- # using Symantec's C/C++ compiler
- #
- !if "$(CC)" == "sc"
-
- CC_FLAGS = -mn $(INCL)
-
- !endif
-
- !endif
-
- default :
- $(CC) $(SRCS) $(CC_FLAGS)
-
- all : clean default
-
-
- clean :
- del *.map
- del *.exe
- del *.obj
- del *.exp
- del *.def
-
-