From 928f27d416b59638cbf596127b3c525aac04cd6e Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sun, 3 Jul 2005 11:59:58 +0000 Subject: [PATCH] *** empty log message *** --- ase/stx/makefile.cl | 2 +- ase/test/stx/makefile.cl | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 ase/test/stx/makefile.cl diff --git a/ase/stx/makefile.cl b/ase/stx/makefile.cl index e4da2d0f..dfc26bbc 100644 --- a/ase/stx/makefile.cl +++ b/ase/stx/makefile.cl @@ -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 diff --git a/ase/test/stx/makefile.cl b/ase/test/stx/makefile.cl new file mode 100644 index 00000000..d3659291 --- /dev/null +++ b/ase/test/stx/makefile.cl @@ -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) $< +