*** empty log message ***

This commit is contained in:
2005-07-03 11:59:58 +00:00
parent 046c748151
commit 928f27d416
2 changed files with 21 additions and 1 deletions

20
ase/test/stx/makefile.cl Normal file
View File

@ -0,0 +1,20 @@
CC = cl
CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\..
LDFLAGS = /libpath:..\..\bas /libpath:..\..\stx
LIBS = xpbas.lib xpstx.lib
all: stx parser
stx: stx.obj
link /nologo /out:stx.exe $(LDFLAGS) $(LIBS) stx.obj
parser: parser.obj
link /nologo /out:parser.exe $(LDFLAGS) $(LIBS) parser.obj
clean:
del $(OBJS) *.obj stx.exe parser.exe
.SUFFIXES: .c .obj
.c.obj:
$(CC) /c $(CFLAGS) $<