X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/a719a4bedec2bc512b7f95f7446e02f6662ebbc7..d942707de2dd9809338882f09a9f23316dc8be36:/client/Makefile.in diff --git a/client/Makefile.in b/client/Makefile.in index 24a8a6e..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,16 +24,25 @@ srcdir= @srcdir@ VPATH= @srcdir@ -TARGETS= 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 -install: $(TARGETS) - set -xe; for f in $(TARGETS); \ +all: $(TARGETS) + +install: $(TARG_INSTALL) + 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) + +%_s: %.o $(srcdir)/../src/libadns.a + $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)