chiark / gitweb /
Get semantics of invertable options, and of cancelling, right.
[adns.git] / client / Makefile.in
index c75d4d0c02d22ba0a9af66e003236a5524e0bbc9..d55057e1513a234d4f3c8224a5070cf63a2735cd 100644 (file)
@@ -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 <ian@davenant.greenend.org.uk>
+#
+#  It is part of adns, which is
+#    Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
+#    Copyright (C) 1999 Tony Finch <dot@dotat.at>
 #  
 #  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
 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
 
 DIRCFLAGS=     -I$(srcdir)/../src
 
+ADH_OBJS=      adh-main.o adh-opts.o adh-query.o
+
 all:           $(TARGETS)
 
 install:       $(TARG_INSTALL)
@@ -35,7 +43,16 @@ install:     $(TARG_INSTALL)
 uninstall:
                for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
 
-adnstest:      adnstest.o $(srcdir)/../dynamic/$(SHLIBFILE)
+$(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)
 
-adnstest_s:    adnstest.o $(srcdir)/../src/libadns.a
+%_s:           %.o $(srcdir)/../src/libadns.a
                $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)