Licensing: Update copyright dates for Ian Jackson
[adns] / client / Makefile.in
1 # client/Makefile - client program(s) Makefile
2 #
3 # This file is part of adns, which is
4 # Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
5 # Copyright (C) 1999-2000,2003,2006 Tony Finch
6 # Copyright (C) 1991 Massachusetts Institute of Technology
7 # (See the file INSTALL for full details.)
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3, or (at your option)
12 # any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software Foundation.
21
22 srcdir= @srcdir@
23 VPATH= @srcdir@
24
25 PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@
26 ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
27
28 PROGRAMS= adnslogres adnsheloex adnshost $(PROGS_SYSDEP)
29 PROGRAMS_LOCAL= fanftest adnstest addrtext
30 PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
31
32 STATIC_LIB= ../src/libadns.a
33
34 ifeq ($(ENABLE_DYNAMIC),elf)
35 DYNAMIC_DEP= ../dynamic/$(SHLIBFILE)
36 DYNAMIC_LINK= -L../dynamic -ladns
37 DYNAMIC_SUFFIX= _s
38 else
39 DYNAMIC_DEP= $(STATIC_LIB)
40 DYNAMIC_LINK= $(STATIC_LIB)
41 DYNAMIC_SUFFIX=
42 endif
43
44 TARG_INSTALL= $(PROGRAMS)
45 TARG_LOCAL= $(addsuffix $(DYNAMIC_SUFFIX), $(PROGRAMS_ALL))
46 TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
47 include ../settings.make
48
49 ADNSDIR= $(srcdir)/../src
50 DIRCFLAGS= -I. -I../src -I$(ADNSDIR)
51
52 TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
53 ADH_OBJS= adh-main.o adh-opts.o adh-query.o
54 ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
55
56
57 all: $(TARGETS)
58
59 install: $(TARG_INSTALL)
60 mkdir -p $(bindir)
61 set -xe; for f in $(TARG_INSTALL); \
62 do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
63
64 uninstall:
65 for f in $(TARGETS); do rm -f $(bindir)/$$f; done
66
67 adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
68 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
69
70 adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
71 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
72
73 $(ADH_OBJS): adnshost.h
74 $(ALL_OBJS): $(ADNSDIR)/adns.h ../src/config.h
75 adnsresfilter.o: $(ADNSDIR)/tvarith.h
76
77 %: %.o $(DYNAMIC_DEP)
78 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
79
80 %_s: %.o $(STATIC_LIB)
81 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)