X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=regress%2FMakefile.in;h=5da4e2891fd53fee4867e4e8bc4242ef36519a40;hb=f9476535903f0225fba0733203580c88b30ad6a1;hp=9a249c25ddd69fbac974af2e55c645d8b0aff9c1;hpb=8b5269f2484d1ab839c3577690dccb2a5bf43b85;p=adns.git diff --git a/regress/Makefile.in b/regress/Makefile.in index 9a249c2..5da4e28 100644 --- a/regress/Makefile.in +++ b/regress/Makefile.in @@ -1,6 +1,11 @@ # regress/Makefile - regression test Makefile # -# This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson +# This file is +# Copyright (C) 1997-2000 Ian Jackson +# +# It is part of adns, which is +# Copyright (C) 1997-2000 Ian Jackson +# Copyright (C) 1999 Tony Finch # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,37 +24,49 @@ srcdir= @srcdir@ VPATH= @srcdir@ -TARGETS= hplayback hrecord -AUTOCSRCS= harness.h hrecord.c hplayback.c hcommon.c +CLIENTS= adnstest adnshost adnslogres adnsresfilter +AUTOCHDRS= harness.h hsyscalls.h hredirect.h +AUTOCSRCS= hrecord.c hplayback.c hcommon.c include $(srcdir)/../settings.make include $(srcdir)/../src/adns.make DIRCFLAGS= -I$(srcdir)/../src -HCPPFLAGS:= $(foreach F, \ - gettimeofday select \ - socket fcntl connect close \ - sendto recvfrom read write writev \ -, -D$F=H$F) +HCPPFLAGS= -DADNS_REGRESS_TEST -I. -HARNLOBJS= $(addsuffix _d.o, $(basename $(LIBOBJS))) $(LDLIBS) -ALLOBJS= $(HARNLOBJS) dtest.o hrecord.o hplayback.o hcommon.o +REDIRLIBOBJS= $(addsuffix _d.o, $(basename $(LIBOBJS))) +HARNLOBJS= hcommon.o $(REDIRLIBOBJS) +TARGETS= $(addsuffix _record, $(CLIENTS)) $(addsuffix _playback, $(CLIENTS)) +ADH_OBJS= adh-main_c.o adh-opts_c.o adh-query_c.o +ALL_OBJS= $(HARNLOBJS) dtest.o hrecord.o hplayback.o -.PRECIOUS: $(AUTOCSRCS) +.PRECIOUS: $(AUTOCSRCS) $(AUTOCHDRS) + +all install uninstall: $(TARGETS) check: $(TARGETS) ./checkall -hrecord: adnstest_c.o hrecord.o hcommon.o $(HARNLOBJS) -hplayback: adnstest_c.o hplayback.o hcommon.o $(HARNLOBJS) +LINK_CMD= $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + +%_record: %_c.o hrecord.o $(HARNLOBJS) + $(LINK_CMD) + +%_playback: %_c.o hplayback.o $(HARNLOBJS) + $(LINK_CMD) + +adnshost_%: $(ADH_OBJS) h%.o $(HARNLOBJS) + $(LINK_CMD) -%_d.o: $(srcdir)/../src/%.c +%_d.o: $(srcdir)/../src/%.c hredirect.h $(CC) $(HCPPFLAGS) -c -g -o $@ $< -%_c.o: $(srcdir)/../client/%.c +%_c.o: $(srcdir)/../client/%.c hredirect.h $(CC) $(HCPPFLAGS) -I $(srcdir)/../src -c -g -o $@ $< -$(ALLOBJS): $(srcdir)/../src/adns.h $(srcdir)/../src/internal.h harness.h +$(ALL_OBJS): $(srcdir)/../src/adns.h $(srcdir)/../src/internal.h +$(ALL_OBJS): harness.h hsyscalls.h +$(ADH_OBJS): $(srcdir)/../client/adnshost.h %:: %.m4 hmacros.i4 hsyscalls.i4 $(M4) -P $< >$@-a.new