*** empty log message ***
This commit is contained in:
parent
046c748151
commit
928f27d416
@ -1,6 +1,6 @@
|
||||
SRCS = \
|
||||
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)
|
||||
OUT = xpstx.lib
|
||||
|
||||
|
20
ase/test/stx/makefile.cl
Normal file
20
ase/test/stx/makefile.cl
Normal 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) $<
|
||||
|
Loading…
Reference in New Issue
Block a user