X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/9579019a0c8a57a67465cb35775ee0cce0ccf804..9da4a044c4d2e0a960cf8f33c62774db02f4402d:/client/Makefile.in diff --git a/client/Makefile.in b/client/Makefile.in index 2d3638e..67acef4 100644 --- a/client/Makefile.in +++ b/client/Makefile.in @@ -1,6 +1,6 @@ # client/Makefile - client program(s) Makefile # -# This file is part of adns, which is Copyright (C) 1997, 1998 Ian Jackson +# This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson # # 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,12 +19,16 @@ srcdir= @srcdir@ VPATH= @srcdir@ -TARGETS= adnstest +TARG_LOCAL= adnstest_s +TARG_INSTALL= adnstest +TARGETS= $(TARG_LOCAL) $(TARG_INSTALL) include $(srcdir)/../settings.make DIRCFLAGS= -I$(srcdir)/../src -install: $(TARGETS) +all: $(TARGETS) + +install: $(TARG_INSTALL) set -xe; for f in $(TARGETS); \ do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done @@ -32,3 +36,6 @@ uninstall: for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done adnstest: adnstest.o $(srcdir)/../dynamic/$(SHLIBFILE) + +adnstest_s: adnstest.o $(srcdir)/../src/libadns.a + $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)