From 720c4c277762391d884cd1852ea6d9d12ecb3d2f Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 10 May 2005 15:39:29 +0000 Subject: [PATCH] *** empty log message *** --- ase/stx/makefile.lcc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ase/stx/makefile.lcc diff --git a/ase/stx/makefile.lcc b/ase/stx/makefile.lcc new file mode 100644 index 00000000..d1d7c44d --- /dev/null +++ b/ase/stx/makefile.lcc @@ -0,0 +1,18 @@ +SRCS = stx.c memory.c object.c hash.c +OBJS = stx.obj memory.obj object.obj hash.obj +OUT = xpstx.lib + +CC = lcc +CFLAGS = -I../.. +LDFLAGS = +LIBS = + +all: $(OBJS) + lcclib $(OUT) $(OBJS) + +clean: + del $(OBJS) $(OUT) *.obj + +.SUFFIXES: .c .obj +.c.obj: + $(CC) $(CFLAGS) -c $<