X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/620c146da30a20c2d9a6c572fdd0540558039d0e..d942707de2dd9809338882f09a9f23316dc8be36:/client/Makefile.in diff --git a/client/Makefile.in b/client/Makefile.in index 67acef4..02effcb 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,8 +24,9 @@ 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 @@ -29,13 +35,14 @@ DIRCFLAGS= -I$(srcdir)/../src 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) +%: %.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)