*** empty log message ***

This commit is contained in:
hyung-hwan 2006-11-14 09:30:46 +00:00
parent 9a2117077a
commit e3e0f0f854
3 changed files with 21 additions and 15 deletions

View File

@ -1,22 +1,22 @@
LIBRARY "aseawk.dll" LIBRARY "aseawk.dll"
EXPORTS EXPORTS
sse_awk_open ase_awk_open
sse_awk_close ase_awk_close
sse_awk_geterrnum ase_awk_geterrnum
sse_awk_geterrstr ase_awk_geterrstr
sse_awk_clear ase_awk_clear
sse_awk_setparseopt ase_awk_setparseopt
sse_awk_setrunopt ase_awk_setrunopt
sse_awk_attsrc ase_awk_attsrc
sse_awk_detsrc ase_awk_detsrc
sse_awk_parse ase_awk_parse
sse_awk_run ase_awk_run
sse_awk_printf ase_awk_printf
sse_awk_strcmp ase_awk_strcmp

View File

@ -17,7 +17,7 @@ CC = cl
LD = link LD = link
JAVAC = javac JAVAC = javac
CFLAGS = /nologo /O2 /MT /W3 /GR- /Za -I../.. -DSSE_CHAR_IS_WCHAR $(JNI_INC) CFLAGS = /nologo /O2 /MT /W3 /GR- /Za -I../.. $(JNI_INC)
JAVACFLAGS = -classpath ../.. JAVACFLAGS = -classpath ../..
all: lib jni all: lib jni
@ -28,7 +28,7 @@ lib: $(C_OBJS)
<< <<
jni: $(JNI_OBJS) $(JAVA_OBJS) jni: $(JNI_OBJS) $(JAVA_OBJS)
$(LD) /dll /def:jni.def /subsystem:console /version:0.1 /release @<< $(LD) /dll /def:jni.def /subsystem:windows /version:0.1 /release @<<
/nologo /out:$(OUT).dll $(JNI_OBJS) /nologo /out:$(OUT).dll $(JNI_OBJS)
<< <<

View File

@ -1,3 +1,9 @@
# ilink32.exe link.exe
# -aa /subsystem:windows
# -ap /subsystem:console
# -ad /subsystem:native
CC = bcc32 CC = bcc32
LD = ilink32 LD = ilink32
CFLAGS = -O2 -WM -WU -RT- -w -I..\..\.. CFLAGS = -O2 -WM -WU -RT- -w -I..\..\..