*** empty log message ***
This commit is contained in:
16
ase/test/awk/makefile.in
Normal file
16
ase/test/awk/makefile.in
Normal file
@ -0,0 +1,16 @@
|
||||
SRCS = awk.c
|
||||
OUTS = $(SRCS:.c=.x)
|
||||
|
||||
CC = @CC@
|
||||
CFLAGS = @CFLAGS@ -I@abs_top_builddir@
|
||||
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/xp/bas -L@abs_top_builddir@/xp/awk
|
||||
LIBS = @LIBS@ -lxpawk -lxpbas
|
||||
|
||||
all: $(OUTS)
|
||||
|
||||
clean:
|
||||
rm -rf $(OUTS) *.o
|
||||
|
||||
.SUFFIXES: .c .x
|
||||
.c.x:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)
|
Reference in New Issue
Block a user