Update copyright dates
[adns] / dynamic / Makefile.in
CommitLineData
1c957fda 1# dynamic/Makefile - dynamic library Makefile
2#
ae8cc977 3# This file is part of adns, which is
baa953c9 4# Copyright (C) 1997-2000,2003,2006,2014-2016 Ian Jackson
17cd4f48 5# Copyright (C) 2014 Mark Wooding
ae8cc977 6# Copyright (C) 1999-2000,2003,2006 Tony Finch
7# Copyright (C) 1991 Massachusetts Institute of Technology
8# (See the file INSTALL for full details.)
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
7f8bbe29 12# the Free Software Foundation; either version 3, or (at your option)
1c957fda 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
8c09a4c6 21# along with this program; if not, write to the Free Software Foundation.
1c957fda 22
9579019a 23srcdir= @srcdir@
24VPATH= @srcdir@
1c957fda 25
9310ea4d 26TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK)
2dee2b7a 27include ../settings.make
9579019a 28include $(srcdir)/../src/adns.make
1c957fda 29
73c4c523 30ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
1c957fda 31
32install:
aef0409a 33 mkdir -p $(libdir)
34 $(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
35 ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
36 ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
9579019a 37
38uninstall:
aef0409a 39 rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
1c957fda 40
9310ea4d 41$(SHLIBFORLINK):
42 ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
43
44$(SHLIBSONAME):
45 ln -s $(SHLIBFILE) $(SHLIBSONAME)
46
11b35193 47$(SHLIBFILE): $(ALLOBJS)
1c957fda 48 rm -f $@
73c4c523 49 $(MKSHLIB_1) $@ $(MKSHLIB_2) $(ALLOBJS) $(LDLIBS) $(MKSHLIB_3)
1c957fda 50
9579019a 51%_p.o: $(srcdir)/../src/%.c $(srcdir)/../src/adns.h \
2dee2b7a
MW
52 $(srcdir)/../src/internal.h ../src/config.h
53 $(SHLIBCC) -I. -I../src -I$(srcdir)/../src -c -o $@ $<
1c957fda 54
55$(LIBOBJS):