chiark / gitweb /
srv with postsort seems to work
[adns] / dynamic / Makefile.in
CommitLineData
e9d74277 1# dynamic/Makefile - dynamic library 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>
c6826df6 8# Copyright (C) 1999-2000 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@
e9d74277 26
11c3ea54 27TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK)
72cdc702 28include $(srcdir)/../settings.make
29include $(srcdir)/../src/adns.make
e9d74277 30
09a06b84 31ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
e9d74277 32
33install:
a8ad1554 34 mkdir -p $(lib_dir)
72cdc702 35 $(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE)
ae08ddcf 36 ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
a8ad1554 37 ln -sf $(SHLIBSONAME) $(lib_dir)/$(SHLIBFORLINK)
72cdc702 38
39uninstall:
9e949dce 40 rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
e9d74277 41
11c3ea54 42$(SHLIBFORLINK):
43 ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
44
45$(SHLIBSONAME):
46 ln -s $(SHLIBFILE) $(SHLIBSONAME)
47
b6953d1b 48$(SHLIBFILE): $(ALLOBJS)
e9d74277 49 rm -f $@
09a06b84 50 $(MKSHLIB_1) $@ $(MKSHLIB_2) $(ALLOBJS) $(LDLIBS) $(MKSHLIB_3)
e9d74277 51
72cdc702 52%_p.o: $(srcdir)/../src/%.c $(srcdir)/../src/adns.h \
53 $(srcdir)/../src/internal.h $(srcdir)/../src/config.h
54 $(SHLIBCC) -I$(srcdir)/../src -c -o $@ $<
e9d74277 55
56$(LIBOBJS):