chiark / gitweb /
Hacking to make out-of-tree builds work properly.
[adns] / client / Makefile.in
CommitLineData
e9d74277 1# client/Makefile - client program(s) Makefile
2#
39f45e7e 3# This file is part of adns, which is
4# Copyright (C) 1997-2000,2003,2006 Ian Jackson
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.)
e9d74277 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
11# the Free Software Foundation; either version 2, or (at your option)
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
20# along with this program; if not, write to the Free Software Foundation,
21# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
72cdc702 23srcdir= @srcdir@
24VPATH= @srcdir@
25
acfd75c4 26PROGS_SYSDEP= @PROGS_HAVE_TSEARCH@
27ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
87ad5851 28
e1bae008 29PROGRAMS= adnslogres adnsheloex adnshost $(PROGS_SYSDEP)
aa958273 30PROGRAMS_LOCAL= fanftest adnstest
7ba81901 31PROGRAMS_ALL= $(PROGRAMS) $(PROGRAMS_LOCAL)
443c32d7 32
34d5f7a9 33STATIC_LIB= ../src/libadns.a
acfd75c4 34
35ifeq ($(ENABLE_DYNAMIC),elf)
34d5f7a9
MW
36DYNAMIC_DEP= ../dynamic/$(SHLIBFILE)
37DYNAMIC_LINK= -L../dynamic -ladns
acfd75c4 38DYNAMIC_SUFFIX= _s
39else
40DYNAMIC_DEP= $(STATIC_LIB)
41DYNAMIC_LINK= $(STATIC_LIB)
42DYNAMIC_SUFFIX=
43endif
44
2b4bbcac 45TARG_INSTALL= $(PROGRAMS)
acfd75c4 46TARG_LOCAL= $(addsuffix $(DYNAMIC_SUFFIX), $(PROGRAMS_ALL))
82a3a6be 47TARGETS= $(TARG_LOCAL) $(TARG_INSTALL)
34d5f7a9 48include ../settings.make
e9d74277 49
34d5f7a9
MW
50ADNSDIR= $(srcdir)/../src
51DIRCFLAGS= -I. -I../src -I$(ADNSDIR)
e9d74277 52
7ba81901 53TARG_OBJS= $(addsuffix .o, $(PROGRAMS_ALL))
b3543b6b 54ADH_OBJS= adh-main.o adh-opts.o adh-query.o
7ba81901 55ALL_OBJS= $(ADH_OBJS) $(TARG_OBJS)
b3543b6b 56
7ba81901 57
82a3a6be 58all: $(TARGETS)
59
60install: $(TARG_INSTALL)
cbcf84e2 61 mkdir -p $(bindir)
125de2a9 62 set -xe; for f in $(TARG_INSTALL); \
cbcf84e2 63 do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
72cdc702 64
65uninstall:
cbcf84e2 66 for f in $(TARGETS); do rm -f $(bindir)/$$f; done
e9d74277 67
11c3ea54 68adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
69 $(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
b3543b6b 70
11c3ea54 71adnshost_s: $(ADH_OBJS) $(STATIC_LIB)
72 $(CC) $(LDFLAGS) $(ADH_OBJS) $(STATIC_LIB) -o $@ $(LDLIBS)
b3543b6b 73
7ba81901 74$(ADH_OBJS): adnshost.h
34d5f7a9 75$(ALL_OBJS): $(ADNSDIR)/adns.h ../src/config.h
7ba81901 76adnsresfilter.o: $(ADNSDIR)/tvarith.h
77
11c3ea54 78%: %.o $(DYNAMIC_DEP)
79 $(CC) $(LDFLAGS) $< $(DYNAMIC_LINK) -o $@ $(LDLIBS)
82a3a6be 80
11c3ea54 81%_s: %.o $(STATIC_LIB)
902bb079 82 $(CC) $(LDFLAGS) $< $(STATIC_LIB) -o $@ $(LDLIBS)