mirror of https://github.com/getdnsapi/getdns.git
added share/doc files to install/uninstall targets
This commit is contained in:
parent
2b19661e77
commit
db0c8e6060
|
@ -0,0 +1,2 @@
|
||||||
|
* 2014-02-25 : Version 0.1.0
|
||||||
|
* Initial public release of the getdns API
|
16
Makefile.in
16
Makefile.in
|
@ -36,9 +36,11 @@ bintar = $(distdir)-bin.tar.gz
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
bindir = @bindir@
|
bindir = @bindir@
|
||||||
|
sharedoc = $(prefix)/share/doc/getdns-$(version)
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
|
||||||
default:
|
default:
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
@ -46,6 +48,17 @@ default:
|
||||||
all : default
|
all : default
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
|
$(INSTALL) -m 755 -d $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 AUTHORS $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 ChangeLog $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 COPYING $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 INSTALL $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 LICENSE $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 NEWS $(sharedoc)
|
||||||
|
$(INSTALL) -m 644 README.md $(sharedoc)
|
||||||
|
$(INSTALL) -m 755 -d $(sharedoc)/spec
|
||||||
|
$(INSTALL) -m 644 spec/index.html $(sharedoc)/spec
|
||||||
|
$(INSTALL) -m 644 spec/getdns*tgz $(sharedoc)/spec
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
cd doc && $(MAKE) $@
|
cd doc && $(MAKE) $@
|
||||||
@echo "***"
|
@echo "***"
|
||||||
|
@ -66,8 +79,9 @@ install: all
|
||||||
@echo "***"
|
@echo "***"
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
cd src && $(MAKE) $@
|
rm -rf -d $(sharedoc)
|
||||||
cd doc && $(MAKE) $@
|
cd doc && $(MAKE) $@
|
||||||
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
doc: FORCE
|
doc: FORCE
|
||||||
cd doc && $(MAKE) $@
|
cd doc && $(MAKE) $@
|
||||||
|
|
Loading…
Reference in New Issue