+ * Do not fail assertion if _qf_owner, _qf_search, domain ends in `.'.
[adns] / client / Makefile.in
CommitLineData
1c957fda 1# client/Makefile - client program(s) Makefile
2#
d942707d 3# This file is
4# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
5#
6# It is part of adns, which is
7# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8# Copyright (C) 1999 Tony Finch <dot@dotat.at>
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
12# the Free Software Foundation; either version 2, 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# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
9579019a 24srcdir= @srcdir@
25VPATH= @srcdir@
26
592aa664 27PROGRAMS= adnstest adnslogres adnshost adnsresfilter
712ba68d 28PROGRAMS_LOCAL= fanftest
41559f53 29PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
712ba68d 30
23d78b27 31TARG_INSTALL= $(PROGRAMS)
41559f53 32TARG_LOCAL= $(addsuffix _s, $(PROGRAMS_ALL))
5476fe64 33TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
9579019a 34include $(srcdir)/../settings.make
1c957fda 35
9579019a 36DIRCFLAGS= -I$(srcdir)/../src
1c957fda 37
41559f53 38TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
d1cff511 39ADH_OBJS= adh-main.o adh-opts.o adh-query.o
41559f53 40ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
d1cff511 41
41559f53 42ADNSDIR= $(srcdir)/../src/
43
44STATIC_LIB= $(ADNSDIR)/libadns.a
9310ea4d 45DYNAMIC_DEP= $(srcdir)/../dynamic/$(SHLIBFILE)
46DYNAMIC_LINK= -L$(srcdir)/../dynamic -ladns
47
5476fe64 48all: $(TARGETS)
49
50install: $(TARG_INSTALL)
636b69b1 51 set -xe; for f in $(TARG_INSTALL); \
9579019a 52 do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
53
54uninstall:
55 for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
1c957fda 56
9310ea4d 57adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
58 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
d1cff511 59
9310ea4d 60adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
61 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
d1cff511 62
41559f53 63$(ADH_OBJS): adnshost.h
64$(ALL_OBJS): $(ADNSDIR)/adns.h $(ADNSDIR)/config.h
65adnsresfilter.o: $(ADNSDIR)/tvarith.h
66
9310ea4d 67%: %.o $(DYNAMIC_DEP)
68 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
5476fe64 69
9310ea4d 70%_s: %.o $(STATIC_LIB)
0cffebc5 71 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)
41559f53 72