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