*** empty log message ***

This commit is contained in:
hyung-hwan 2005-05-10 15:39:29 +00:00
parent d5631c8781
commit 720c4c2777

18
ase/stx/makefile.lcc Normal file
View File

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