X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/b0f83da6723dbce745d7baacec47131ba73208d9..49d8f5b423c87e34679a7df2c2fc3c91183da967:/client/Makefile.in diff --git a/client/Makefile.in b/client/Makefile.in index c03b493..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 @@ -27,6 +32,8 @@ include $(srcdir)/../settings.make DIRCFLAGS= -I$(srcdir)/../src +ADH_OBJS= adh-main.o adh-opts.o adh-query.o + all: $(TARGETS) install: $(TARG_INSTALL) @@ -36,6 +43,14 @@ install: $(TARG_INSTALL) uninstall: for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done +$(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)