urgency high
[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
b0f83da6 27PROGRAMS= adnstest adnslogres adnshost
23d78b27 28TARG_INSTALL= $(PROGRAMS)
29TARG_LOCAL= $(addsuffix _s, $(PROGRAMS))
5476fe64 30TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
9579019a 31include $(srcdir)/../settings.make
1c957fda 32
9579019a 33DIRCFLAGS= -I$(srcdir)/../src
1c957fda 34
d1cff511 35ADH_OBJS= adh-main.o adh-opts.o adh-query.o
36
5476fe64 37all: $(TARGETS)
38
39install: $(TARG_INSTALL)
636b69b1 40 set -xe; for f in $(TARG_INSTALL); \
9579019a 41 do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
42
43uninstall:
44 for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
1c957fda 45
e3f575ff 46$(ADH_OBJS): adnshost.h
47
d1cff511 48adnshost: $(ADH_OBJS) $(srcdir)/../dynamic/$(SHLIBFILE)
49 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)
50
51adnshost_s: $(ADH_OBJS) $(srcdir)/../src/libadns.a
52 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)
53
23d78b27 54%: %.o $(srcdir)/../dynamic/$(SHLIBFILE)
55 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)
5476fe64 56
23d78b27 57%_s: %.o $(srcdir)/../src/libadns.a
8b5269f2 58 $(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)