chiark / gitweb /
tvarith.h in right place.
[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
7# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
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
790cfd2b 27PROGRAMS= adnstest adnslogres adnshost adnsresfilter
443c32d7 28PROGRAMS_LOCAL= fanftest
29
2b4bbcac 30TARG_INSTALL= $(PROGRAMS)
443c32d7 31TARG_LOCAL= $(addsuffix _s, $(PROGRAMS) $(PROGRAMS_LOCAL))
82a3a6be 32TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
72cdc702 33include $(srcdir)/../settings.make
e9d74277 34
72cdc702 35DIRCFLAGS= -I$(srcdir)/../src
e9d74277 36
b3543b6b 37ADH_OBJS= adh-main.o adh-opts.o adh-query.o
38
11c3ea54 39STATIC_LIB= $(srcdir)/../src/libadns.a
40DYNAMIC_DEP= $(srcdir)/../dynamic/$(SHLIBFILE)
41DYNAMIC_LINK= -L$(srcdir)/../dynamic -ladns
42
82a3a6be 43all: $(TARGETS)
44
45install: $(TARG_INSTALL)
125de2a9 46 set -xe; for f in $(TARG_INSTALL); \
72cdc702 47 do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
48
49uninstall:
50 for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
e9d74277 51
aa1d7195 52$(ADH_OBJS): adnshost.h
53
11c3ea54 54adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
55 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
b3543b6b 56
11c3ea54 57adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
58 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
b3543b6b 59
11c3ea54 60%: %.o $(DYNAMIC_DEP)
61 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
82a3a6be 62
11c3ea54 63%_s: %.o $(STATIC_LIB)
902bb079 64 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)