*** empty log message ***

This commit is contained in:
2006-04-18 16:27:29 +00:00
parent 0942321094
commit ec8c5a53de
4 changed files with 45 additions and 6 deletions

View File

@ -0,0 +1,17 @@
CC = gcc
CFLAGS = -m64 -Wall -O2 -I../../.. -D__STAND_ALONE
LDFLAGS = -m64 -L../../bas -L../../awk
LIBS = -lxpawk -lm
all: awk
awk: awk.o
$(CC) -o awk awk.o $(LDFLAGS) $(LIBS)
clean:
rm -f *.o awk
.SUFFIXES: .c .o
.c.o:
$(CC) -c $(CFLAGS) $<