chiark / gitweb /
Bump version.
[adns] / client / Makefile.in
CommitLineData
e9d74277 1# client/Makefile - client program(s) Makefile
2#
a79ac5ba 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
89435c42 7# Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
a79ac5ba 8# Copyright (C) 1999 Tony Finch <dot@dotat.at>
e9d74277 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
72cdc702 24srcdir= @srcdir@
25VPATH= @srcdir@
26
87ad5851 27PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@
28
29PROGRAMS= adnstest adnslogres adnshost $(PROGS_SYSDEP)
443c32d7 30PROGRAMS_LOCAL= fanftest
7ba81901 31PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
443c32d7 32
2b4bbcac 33TARG_INSTALL= $(PROGRAMS)
7ba81901 34TARG_LOCAL= $(addsuffix _s, $(PROGRAMS_ALL))
82a3a6be 35TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
72cdc702 36include $(srcdir)/../settings.make
e9d74277 37
72cdc702 38DIRCFLAGS= -I$(srcdir)/../src
e9d74277 39
7ba81901 40TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
b3543b6b 41ADH_OBJS= adh-main.o adh-opts.o adh-query.o
7ba81901 42ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
b3543b6b 43
7ba81901 44ADNSDIR= $(srcdir)/../src/
45
46STATIC_LIB= $(ADNSDIR)/libadns.a
11c3ea54 47DYNAMIC_DEP= $(srcdir)/../dynamic/$(SHLIBFILE)
48DYNAMIC_LINK= -L$(srcdir)/../dynamic -ladns
49
82a3a6be 50all: $(TARGETS)
51
52install: $(TARG_INSTALL)
125de2a9 53 set -xe; for f in $(TARG_INSTALL); \
72cdc702 54 do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
55
56uninstall:
57 for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
e9d74277 58
11c3ea54 59adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
60 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
b3543b6b 61
11c3ea54 62adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
63 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
b3543b6b 64
7ba81901 65$(ADH_OBJS): adnshost.h
66$(ALL_OBJS): $(ADNSDIR)/adns.h $(ADNSDIR)/config.h
67adnsresfilter.o: $(ADNSDIR)/tvarith.h
68
11c3ea54 69%: %.o $(DYNAMIC_DEP)
70 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
82a3a6be 71
11c3ea54 72%_s: %.o $(STATIC_LIB)
902bb079 73 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)
7ba81901 74