Halfway through getting it to compile; about to move various bits of
[adns] / src / Makefile.in
... / ...
CommitLineData
1CC=gcc $(WARNS) $(WERROR) $(OPTIMISE) $(DEBUG)
2DEBUG=-g
3OPTIMISE=-O2
4WARNS= -Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes \
5 -Wcast-qual -Wpointer-arith
6WERROR=-Werror
7
8all: dtest
9
10dtest: dtest.o event.o query.o setup.o submit.o reply.o parse.o
11
12clean:
13 rm -f dtest *.o
14
15dtest.o: adns.h
16
17event.o query.o setup.o submit.o reply.o parse.o: internal.h adns.h
18