Update copyright dates
[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-2016 Ian Jackson
5 # Copyright (C) 2014 Mark Wooding
6 # Copyright (C) 1999-2000,2003,2006 Tony Finch
7 # Copyright (C) 1991 Massachusetts Institute of Technology
8 # (See the file INSTALL for full details.)
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 3, 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
23 srcdir= @srcdir@
24 VPATH= @srcdir@
25
26 PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@
27 ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
28
29 PROGRAMS= adnslogres adnsheloex adnshost $(PROGS_SYSDEP)
30 PROGRAMS_LOCAL= fanftest adnstest addrtext
31 PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
32
33 STATIC_LIB= ../src/libadns.a
34
35 ifeq ($(ENABLE_DYNAMIC),elf)
36 DYNAMIC_DEP= ../dynamic/$(SHLIBFILE)
37 DYNAMIC_LINK= -L../dynamic -ladns
38 DYNAMIC_SUFFIX= _s
39 else
40 DYNAMIC_DEP= $(STATIC_LIB)
41 DYNAMIC_LINK= $(STATIC_LIB)
42 DYNAMIC_SUFFIX=
43 endif
44
45 TARG_INSTALL= $(PROGRAMS)
46 TARG_LOCAL= $(addsuffix $(DYNAMIC_SUFFIX), $(PROGRAMS_ALL))
47 TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
48 include ../settings.make
49
50 ADNSDIR= $(srcdir)/../src
51 DIRCFLAGS= -I. -I../src -I$(ADNSDIR)
52
53 TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
54 ADH_OBJS= adh-main.o adh-opts.o adh-query.o
55 ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
56
57
58 all: $(TARGETS)
59
60 install: $(TARG_INSTALL)
61 mkdir -p $(bindir)
62 set -xe; for f in $(TARG_INSTALL); \
63 do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
64
65 uninstall:
66 for f in $(TARGETS); do rm -f $(bindir)/$$f; done
67
68 adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
69 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
70
71 adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
72 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
73
74 $(ADH_OBJS): adnshost.h
75 $(ALL_OBJS): $(ADNSDIR)/adns.h ../src/config.h
76 adnsresfilter.o: $(ADNSDIR)/tvarith.h
77
78 %: %.o $(DYNAMIC_DEP)
79 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
80
81 %_s: %.o $(STATIC_LIB)
82 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)