summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/iplang/Makefile
blob: 4537e8dfb59396c072c2f11f326981cfd435f097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Redistribution and use in source and binary forms are permitted
# provided that this notice is preserved and due credit is given
# to the original author and the contributors.
#
#CC=gcc -Wuninitialized -Wstrict-prototypes -Werror -O
CFLAGS=-I..

all: $(DESTDIR)/y.tab.o $(DESTDIR)/lex.yy.o y.tab.o lex.yy.o

$(DESTDIR)/y.tab.o: y.tab.c
	$(CC) $(DEBUG) -I. -I.. -I../ipsend $(CFLAGS) $(LINUX) -c y.tab.c -o $@

$(DESTDIR)/lex.yy.o: lex.yy.c
	$(CC) $(DEBUG) -I. -I.. -I../ipsend $(CFLAGS) $(LINUX) -c lex.yy.c -o $@

y.tab.o: y.tab.c
	$(CC) $(DEBUG) -I. -I.. -I../ipsend $(CFLAGS) $(LINUX) -c y.tab.c -o $@

lex.yy.o: lex.yy.c
	$(CC) $(DEBUG) -I. -I.. -I../ipsend $(CFLAGS) $(LINUX) -c lex.yy.c -o $@

lex.yy.c: iplang_l.l y.tab.h
	lex iplang_l.l

y.tab.c y.tab.h: iplang_y.y
	yacc -d iplang_y.y

clean:
	/bin/rm -f *.o lex.yy.c y.tab.c y.tab.h
OpenPOWER on IntegriCloud