qse/ase/stx/makefile.lcc

19 lines
307 B
Plaintext
Raw Normal View History

2005-05-15 18:37:00 +00:00
SRCS = stx.c memory.c object.c hash.c misc.c context.c
OBJS = stx.obj memory.obj object.obj hash.obj misc.obj context.obj
2005-05-10 15:39:29 +00:00
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 $<