*** empty log message ***
This commit is contained in:
parent
d5631c8781
commit
720c4c2777
18
ase/stx/makefile.lcc
Normal file
18
ase/stx/makefile.lcc
Normal 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 $<
|
Loading…
Reference in New Issue
Block a user