*** empty log message ***

This commit is contained in:
2007-02-11 09:18:32 +00:00
parent 8a5f0efc20
commit a01eb7445c
6 changed files with 16 additions and 30 deletions

View File

@ -1,18 +0,0 @@
SRCS = name.c token.c array.c prim.c mem.c env.c init.c read.c eval.c print.c
OBJS = name.obj token.obj array.obj prim.obj mem.obj env.obj init.obj read.obj eval.obj print.obj
OUT = aselsp.lib
CC = lcc
CFLAGS = -I../.. -A -ansic -libcdll
LDFLAGS =
LIBS =
all: $(OBJS)
lcclib $(OUT) $(OBJS)
clean:
del $(OBJS) $(OUT) *.obj
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<