From eea3aa964356ab1913afdfc089b0f85710e804ee Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 19 Sep 2005 02:59:20 +0000 Subject: [PATCH] *** empty log message *** --- ase/test/lsp/makefile.cl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ase/test/lsp/makefile.cl diff --git a/ase/test/lsp/makefile.cl b/ase/test/lsp/makefile.cl new file mode 100644 index 00000000..7ed31245 --- /dev/null +++ b/ase/test/lsp/makefile.cl @@ -0,0 +1,17 @@ +CC = cl +CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\.. +LDFLAGS = /libpath:..\..\bas /libpath:..\..\lsp +LIBS = xpbas.lib xplsp.lib + +all: lisp + +lisp: lisp.obj + link /nologo /out:lisp.exe $(LDFLAGS) $(LIBS) lisp.obj + +clean: + del $(OBJS) *.obj lisp.exe + +.SUFFIXES: .c .obj +.c.obj: + $(CC) /c $(CFLAGS) $< +