chiark / gitweb /
Licensing: Update copyright dates for Ian Jackson
[adns.git] / dynamic / Makefile.in
1 # dynamic/Makefile - dynamic library Makefile
2
3 #  This file is part of adns, which is
4 #    Copyright (C) 1997-2000,2003,2006,2014  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.)
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 3, 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
22 srcdir=         @srcdir@
23 VPATH=          @srcdir@
24
25 TARGETS=        $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK)
26 include         ../settings.make
27 include         $(srcdir)/../src/adns.make
28
29 ALLOBJS=        $(addsuffix _p.o, $(basename $(LIBOBJS)))
30
31 install:
32                 mkdir -p $(libdir)
33                 $(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
34                 ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
35                 ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
36
37 uninstall:
38                 rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
39
40 $(SHLIBFORLINK):
41                 ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
42
43 $(SHLIBSONAME):
44                 ln -s $(SHLIBFILE) $(SHLIBSONAME)
45
46 $(SHLIBFILE):   $(ALLOBJS)
47                 rm -f $@
48                 $(MKSHLIB_1) $@ $(MKSHLIB_2) $(ALLOBJS) $(LDLIBS) $(MKSHLIB_3)
49
50 %_p.o:          $(srcdir)/../src/%.c $(srcdir)/../src/adns.h \
51                         $(srcdir)/../src/internal.h ../src/config.h
52                 $(SHLIBCC) -I. -I../src -I$(srcdir)/../src -c -o $@ $<
53
54 $(LIBOBJS):