*** empty log message ***

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

View File

@ -1,6 +1,6 @@
SRCS = \ SRCS = \
stx.c memory.c object.c symbol.c class.c \ stx.c memory.c object.c symbol.c class.c \
hash.c misc.c context.c token.c parser.c bootstrp.c hash.c misc.c context.c name.c token.c parser.c bootstrp.c
OBJS = $(SRCS:.c=.obj) OBJS = $(SRCS:.c=.obj)
OUT = xpstx.lib OUT = xpstx.lib

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) $<