*** empty log message ***

This commit is contained in:
2006-04-14 15:08:37 +00:00
parent d0c9c8e099
commit c09fffb05a
10 changed files with 48 additions and 2 deletions

18
ase/test/awk/makefile.lcc Normal file
View File

@ -0,0 +1,18 @@
CC = lcc
CFLAGS = -I../../.. -A -ansic -libcdll
#LDFLAGS = -subsystem console -dynamic -s
LDFLAGS = -subsystem console -s -L../../../xp/bas -L../../../xp/awk
LIBS = xpbas.lib xpawk.lib
all: awk
awk: awk.obj
lcclnk $(LDFLAGS) -o awk.exe awk.obj $(LIBS)
clean:
del $(OBJS) *.obj $(OUT)
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<