Update copyright dates
[adns] / client / Makefile.in
CommitLineData
1c957fda 1# client/Makefile - client program(s) Makefile
2#
ae8cc977 3# This file is part of adns, which is
baa953c9 4# Copyright (C) 1997-2000,2003,2006,2014-2016 Ian Jackson
17cd4f48 5# Copyright (C) 2014 Mark Wooding
ae8cc977 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.)
1c957fda 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
7f8bbe29 12# the Free Software Foundation; either version 3, or (at your option)
1c957fda 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
8c09a4c6 21# along with this program; if not, write to the Free Software Foundation.
1c957fda 22
9579019a 23srcdir= @srcdir@
24VPATH= @srcdir@
25
48337073 26PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@
27ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
9a09fa18 28
849075a0 29PROGRAMS= adnslogres adnsheloex adnshost $(PROGS_SYSDEP)
5806b745 30PROGRAMS_LOCAL= fanftest adnstest addrtext
41559f53 31PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
712ba68d 32
2dee2b7a 33STATIC_LIB= ../src/libadns.a
48337073 34
35ifeq ($(ENABLE_DYNAMIC),elf)
2dee2b7a
MW
36DYNAMIC_DEP= ../dynamic/$(SHLIBFILE)
37DYNAMIC_LINK= -L../dynamic -ladns
48337073 38DYNAMIC_SUFFIX= _s
39else
40DYNAMIC_DEP= $(STATIC_LIB)
41DYNAMIC_LINK= $(STATIC_LIB)
42DYNAMIC_SUFFIX=
43endif
44
23d78b27 45TARG_INSTALL= $(PROGRAMS)
48337073 46TARG_LOCAL= $(addsuffix $(DYNAMIC_SUFFIX), $(PROGRAMS_ALL))
5476fe64 47TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
2dee2b7a 48include ../settings.make
1c957fda 49
2dee2b7a
MW
50ADNSDIR= $(srcdir)/../src
51DIRCFLAGS= -I. -I../src -I$(ADNSDIR)
1c957fda 52
41559f53 53TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
d1cff511 54ADH_OBJS= adh-main.o adh-opts.o adh-query.o
41559f53 55ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
d1cff511 56
41559f53 57
5476fe64 58all: $(TARGETS)
59
60install: $(TARG_INSTALL)
aef0409a 61 mkdir -p $(bindir)
636b69b1 62 set -xe; for f in $(TARG_INSTALL); \
aef0409a 63 do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
9579019a 64
65uninstall:
aef0409a 66 for f in $(TARGETS); do rm -f $(bindir)/$$f; done
1c957fda 67
9310ea4d 68adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
69 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
d1cff511 70
9310ea4d 71adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
72 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
d1cff511 73
41559f53 74$(ADH_OBJS): adnshost.h
2dee2b7a 75$(ALL_OBJS): $(ADNSDIR)/adns.h ../src/config.h
41559f53 76adnsresfilter.o: $(ADNSDIR)/tvarith.h
77
9310ea4d 78%: %.o $(DYNAMIC_DEP)
79 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
5476fe64 80
9310ea4d 81%_s: %.o $(STATIC_LIB)
0cffebc5 82 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)