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