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