Halfway through getting it to compile; about to move various bits of
[adns] / src / Makefile.in
CommitLineData
964344fc 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
98a3f706 10dtest: dtest.o event.o query.o setup.o submit.o reply.o parse.o
4353a5c4 11
12clean:
13 rm -f dtest *.o
14
98a3f706 15dtest.o: adns.h
16
17event.o query.o setup.o submit.o reply.o parse.o: internal.h adns.h
aa98c861 18