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