X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/620c146da30a20c2d9a6c572fdd0540558039d0e..49d8f5b423c87e34679a7df2c2fc3c91183da967:/client/Makefile.in diff --git a/client/Makefile.in b/client/Makefile.in index 67acef4..d55057e 100644 --- a/client/Makefile.in +++ b/client/Makefile.in @@ -1,6 +1,11 @@ # client/Makefile - client program(s) Makefile # -# This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson +# This file is +# Copyright (C) 1997-1999 Ian Jackson +# +# It is part of adns, which is +# Copyright (C) 1997-1999 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,23 +24,35 @@ srcdir= @srcdir@ VPATH= @srcdir@ -TARG_LOCAL= adnstest_s -TARG_INSTALL= adnstest +PROGRAMS= adnstest adnslogres adnshost +TARG_INSTALL= $(PROGRAMS) +TARG_LOCAL= $(addsuffix _s, $(PROGRAMS)) TARGETS= $(TARG_LOCAL) $(TARG_INSTALL) include $(srcdir)/../settings.make DIRCFLAGS= -I$(srcdir)/../src +ADH_OBJS= adh-main.o adh-opts.o adh-query.o + all: $(TARGETS) install: $(TARG_INSTALL) - set -xe; for f in $(TARGETS); \ + set -xe; for f in $(TARG_INSTALL); \ do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done uninstall: for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done -adnstest: adnstest.o $(srcdir)/../dynamic/$(SHLIBFILE) +$(ADH_OBJS): adnshost.h + +adnshost: $(ADH_OBJS) $(srcdir)/../dynamic/$(SHLIBFILE) + $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS) + +adnshost_s: $(ADH_OBJS) $(srcdir)/../src/libadns.a + $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS) + +%: %.o $(srcdir)/../dynamic/$(SHLIBFILE) + $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS) -adnstest_s: adnstest.o $(srcdir)/../src/libadns.a +%_s: %.o $(srcdir)/../src/libadns.a $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)