chiark / gitweb /
All except rrtype-specific stuff complete but largely untest. That is
[adns.git] / src / Makefile.in
1 CC=gcc $(WARNS) $(WERROR) $(OPTIMISE) $(DEBUG)
2 DEBUG=-g
3 OPTIMISE=-O2
4 WARNS=  -Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes \
5         -Wcast-qual -Wpointer-arith
6 WERROR=-Werror
7
8 all:            dtest
9
10 dtest:          dtest.o event.o query.o setup.o submit.o reply.o parse.o
11
12 clean:
13                 rm -f dtest *.o
14
15 dtest.o:                                                adns.h
16
17 event.o query.o setup.o submit.o reply.o parse.o:       internal.h adns.h
18