X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=adns.git;a=blobdiff_plain;f=client%2FMakefile.in;h=2d3638eec75d24242235470be5c2bc47f051ea1e;hp=76a8bd967ba9db789c71124d787a21ca9358f724;hb=9579019a0c8a57a67465cb35775ee0cce0ccf804;hpb=fb9d88f3f3220bb1a50af7ab1d3bd1fbaa282bed diff --git a/client/Makefile.in b/client/Makefile.in index 76a8bd9..2d3638e 100644 --- a/client/Makefile.in +++ b/client/Makefile.in @@ -16,13 +16,19 @@ # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -SUBDIR=/client -DIRCFLAGS= -I$(srcdir)/src +srcdir= @srcdir@ +VPATH= @srcdir@ + TARGETS= adnstest +include $(srcdir)/../settings.make -include $(srcdir)/settings.make +DIRCFLAGS= -I$(srcdir)/../src install: $(TARGETS) - $(INSTALL_BIN) $(TARGETS) $(bin_dir) + set -xe; for f in $(TARGETS); \ + 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) +adnstest: adnstest.o $(srcdir)/../dynamic/$(SHLIBFILE)