chiark / gitweb /
Hacking to make out-of-tree builds work properly.
[adns] / dynamic / Makefile.in
CommitLineData
e9d74277 1# dynamic/Makefile - dynamic library 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@
e9d74277 25
11c3ea54 26TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK)
34d5f7a9 27include ../settings.make
72cdc702 28include $(srcdir)/../src/adns.make
e9d74277 29
09a06b84 30ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
e9d74277 31
32install:
cbcf84e2 33 mkdir -p $(libdir)
34 $(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
35 ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
36 ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
72cdc702 37
38uninstall:
cbcf84e2 39 rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
e9d74277 40
11c3ea54 41$(SHLIBFORLINK):
42 ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
43
44$(SHLIBSONAME):
45 ln -s $(SHLIBFILE) $(SHLIBSONAME)
46
b6953d1b 47$(SHLIBFILE): $(ALLOBJS)
e9d74277 48 rm -f $@
09a06b84 49 $(MKSHLIB_1) $@ $(MKSHLIB_2) $(ALLOBJS) $(LDLIBS) $(MKSHLIB_3)
e9d74277 50
72cdc702 51%_p.o: $(srcdir)/../src/%.c $(srcdir)/../src/adns.h \
34d5f7a9
MW
52 $(srcdir)/../src/internal.h ../src/config.h
53 $(SHLIBCC) -I. -I../src -I$(srcdir)/../src -c -o $@ $<
e9d74277 54
55$(LIBOBJS):