mirror of https://github.com/getdnsapi/getdns.git
Fix for Issue #27
This commit is contained in:
parent
776fe3c02a
commit
42bdfdd06a
26
Makefile.in
26
Makefile.in
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013, Verisign, Inc., NLnet Labs
|
# Copyright (c) 2013, Verisign, Inc., NLnet Labs
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
# modification, are permitted provided that the following conditions are met:
|
# modification, are permitted provided that the following conditions are met:
|
||||||
# * Redistributions of source code must retain the above copyright
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
# * Neither the names of the copyright holders nor the
|
# * Neither the names of the copyright holders nor the
|
||||||
# names of its contributors may be used to endorse or promote products
|
# names of its contributors may be used to endorse or promote products
|
||||||
# derived from this software without specific prior written permission.
|
# derived from this software without specific prior written permission.
|
||||||
#
|
#
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
@ -45,7 +45,7 @@ VPATH = @srcdir@
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
|
|
||||||
default:
|
default:
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
|
|
||||||
all : default
|
all : default
|
||||||
|
|
||||||
|
@ -61,8 +61,8 @@ install: all
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)/spec
|
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)/spec
|
||||||
$(INSTALL) -m 644 spec/index.html $(DESTDIR)$(docdir)/spec
|
$(INSTALL) -m 644 spec/index.html $(DESTDIR)$(docdir)/spec
|
||||||
$(INSTALL) -m 644 spec/getdns*tgz $(DESTDIR)$(docdir)/spec
|
$(INSTALL) -m 644 spec/getdns*tgz $(DESTDIR)$(docdir)/spec
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
cd doc && $(MAKE) $@
|
cd $(srcdir)/doc && $(MAKE) $@
|
||||||
@echo "***"
|
@echo "***"
|
||||||
@echo "*** !!! IMPORTANT !!!! libgetdns needs a DNSSEC trust anchor!"
|
@echo "*** !!! IMPORTANT !!!! libgetdns needs a DNSSEC trust anchor!"
|
||||||
@echo "***"
|
@echo "***"
|
||||||
|
@ -83,25 +83,25 @@ install: all
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -rf $(DESTDIR)$(docdir)
|
rm -rf $(DESTDIR)$(docdir)
|
||||||
cd doc && $(MAKE) $@
|
cd $(srcdir)/doc && $(MAKE) $@
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
|
|
||||||
doc: FORCE
|
doc: FORCE
|
||||||
cd doc && $(MAKE) $@
|
cd $(srcdir)/doc && $(MAKE) $@
|
||||||
|
|
||||||
example:
|
example:
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
cd doc && $(MAKE) $@
|
cd $(srcdir)/doc && $(MAKE) $@
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
cd src && $(MAKE) $@
|
cd $(srcdir)/src && $(MAKE) $@
|
||||||
rm -f config.log config.status Makefile
|
rm -f config.log config.status Makefile
|
||||||
rm -fR autom4te.cache
|
rm -fR autom4te.cache
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue