qse/ase/stx/makefile.lcc

19 lines
347 B
Plaintext
Raw Normal View History

2005-05-17 16:18:56 +00:00
SRCS = stx.c memory.c object.c symbol.c hash.c misc.c context.c
OBJS = stx.obj memory.obj object.obj symbol.obj hash.obj misc.obj context.obj
2005-05-10 15:39:29 +00:00
OUT = xpstx.lib
CC = lcc
2005-05-20 04:06:38 +00:00
CFLAGS = -I../.. -A -ansic -libcdll
2005-05-10 15:39:29 +00:00
LDFLAGS =
LIBS =
all: $(OBJS)
lcclib $(OUT) $(OBJS)
clean:
del $(OBJS) $(OUT) *.obj
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<