*** 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

18
ase/awk/makefile.sol64 Normal file
View File

@ -0,0 +1,18 @@
SRCS = awk.c err.c tree.c tab.c map.c parse.c run.c sa.c val.c misc.c
OBJS = $(SRCS:.c=.o)
OUT = libxpawk.a
CC = gcc
#CFLAGS = -m64 -O2 -Wall -std=c89 -pedantic -I../.. -DXP_AWK_STAND_ALONE
CFLAGS = -m64 -O2 -Wall -I../.. -DXP_AWK_STAND_ALONE
all: $(OBJS)
ar cr $(OUT) $(OBJS)
clean:
rm -rf $(OBJS) $(OUT) *.obj
.SUFFIXES: .c .o
.c.o:
$(CC) $(CFLAGS) -c $<