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