chiark / gitweb /
02effcb2b7cd9155380a36f6de7d796564342578
[adns.git] / client / Makefile.in
1 # client/Makefile - client program(s) Makefile
2
3 #  This file is
4 #    Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
5 #
6 #  It is part of adns, which is
7 #    Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8 #    Copyright (C) 1999 Tony Finch <dot@dotat.at>
9 #  
10 #  This program is free software; you can redistribute it and/or modify
11 #  it under the terms of the GNU General Public License as published by
12 #  the Free Software Foundation; either version 2, or (at your option)
13 #  any later version.
14 #  
15 #  This program is distributed in the hope that it will be useful,
16 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #  GNU General Public License for more details.
19 #  
20 #  You should have received a copy of the GNU General Public License
21 #  along with this program; if not, write to the Free Software Foundation,
22 #  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
23
24 srcdir=         @srcdir@
25 VPATH=          @srcdir@
26
27 PROGRAMS=       adnstest adnslogres adnshost
28 TARG_INSTALL=   $(PROGRAMS)
29 TARG_LOCAL=     $(addsuffix _s, $(PROGRAMS))
30 TARGETS=        $(TARG_LOCAL) $(TARG_INSTALL)
31 include         $(srcdir)/../settings.make
32
33 DIRCFLAGS=      -I$(srcdir)/../src
34
35 all:            $(TARGETS)
36
37 install:        $(TARG_INSTALL)
38                 set -xe; for f in $(TARG_INSTALL); \
39                         do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
40
41 uninstall:
42                 for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
43
44 %:              %.o $(srcdir)/../dynamic/$(SHLIBFILE)
45                 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)
46
47 %_s:            %.o $(srcdir)/../src/libadns.a
48                 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)