]> Pileus Git - ~andy/sfvlug/blob - awk/ext/mkfile
Add sed and awk presentation
[~andy/sfvlug] / awk / ext / mkfile
1 CFLAGS   = -g -Wall -fPIC --std=gnu99
2 CPPFLAGS = -I/usr/include/awk -I. -DHAVE_CONFIG_H
3
4 test:Q: select.so
5         awk -f select.awk
6         #awk -f rhawk < testirc.txt
7         #awk -f rhawk < testirc.txt
8         #awk -f test.awk test.txt | awk -f rhawk #| grep 'points\|bid\|took'
9
10 %.so: %.o
11         gcc $CFLAGS -shared -o $target $prereq $LDFLAGS
12
13 %.o: %.c
14         gcc $CPPFLAGS $CFLAGS -c -o $target $prereq