Initial draft of test harness arrangements, from chiark. cvs rdiff
[adns] / src / Makefile.in
1 # This file is part of adns, which is Copyright (C) 1997, 1998 Ian Jackson
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software Foundation,
15 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17 CC=gcc $(WARNS) $(WERROR) $(OPTIMISE) $(DEBUG) $(XCFLAGS)
18 DEBUG=-g
19 OPTIMISE=-O2
20 WARNS= -Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes \
21 -Wcast-qual -Wpointer-arith
22 WERROR=-Werror
23
24 HCPPFLAGS= \
25 -Dsocket=Hsocket -Dfcntl=Hfcntl -Dgettimeofday=Hgettimeofday \
26 -Dsendto=Hsendto -Drecvfrom=Hrecvfrom -Dselect=Hselect -Dconnect=Hconnect \
27 -Dread=Hread -Dwrite=Hwrite -Dclose=Hclose
28
29 LIBOBJS= types.o event.o query.o reply.o general.o setup.o transmit.o parse.o
30 HARNLOBJS= $(addsuffix _d.o, $(basename $(LIBOBJS)))
31 ALLOBJS= $(LIBOBJS) $(HARNLOBJS) dtest.o harness.o
32
33 all: dtest
34
35 harness: harness.o $(HARNLOBJS)
36
37 dtest: dtest.o $(LIBOBJS)
38
39 %_d.o: %.c
40 $(CC) $(HCPPFLAGS) -c -g -o $@ $<
41
42 clean:
43 rm -f dtest *.o
44
45 $(HARNLOBJS): adns.h internal.h
46 $(LIBOBJS): adns.h internal.h
47 dtest.o: adns.h