chiark / gitweb /
+ * Avoid infinite timeouts, causing lockup, when they should be zero !
[adns] / dynamic / Makefile.in
CommitLineData
1c957fda 1# dynamic/Makefile - dynamic library Makefile
2#
d942707d 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
7# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8# Copyright (C) 1999 Tony Finch <dot@dotat.at>
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
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
9579019a 24srcdir= @srcdir@
25VPATH= @srcdir@
1c957fda 26
9310ea4d 27TARGETS= $(SHLIBFILE) $(SHLIBSONAME) $(SHLIBFORLINK)
9579019a 28include $(srcdir)/../settings.make
29include $(srcdir)/../src/adns.make
1c957fda 30
73c4c523 31ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
1c957fda 32
33install:
9579019a 34 $(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE)
696e536a 35 ln -s $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
9579019a 36
37uninstall:
696e536a 38 rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(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 \
51 $(srcdir)/../src/internal.h $(srcdir)/../src/config.h
52 $(SHLIBCC) -I$(srcdir)/../src -c -o $@ $<
1c957fda 53
54$(LIBOBJS):