diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-05-26 23:39:07 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-05-26 23:39:07 +0000 |
commit | 16ae49688035474711f4cc32d890ff4000bdee73 (patch) | |
tree | b49927ab0309e1134f8158575b775772851ad41e /Makefile | |
download | acf-unbound-0.0.1.tar.bz2 acf-unbound-0.0.1.tar.xz |
Initial commit of Unbound ACFv0.0.1
Basic support for status / startstop / expert / logfile
Logfile assumes syslog and does not yet read the config for logfile location
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..403f43e --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +APP_NAME=unbound +PACKAGE=acf-$(APP_NAME) +VERSION=0.0.1 + +APP_DIST=\ + unbound* \ + + +EXTRA_DIST=README Makefile config.mk + +DISTFILES=$(APP_DIST) $(EXTRA_DIST) + +TAR=tar + +P=$(PACKAGE)-$(VERSION) +tarball=$(P).tar.bz2 +install_dir=$(DESTDIR)/$(appdir)/$(APP_NAME) + +all: +clean: + rm -rf $(tarball) $(P) + +dist: $(tarball) + +install: + mkdir -p "$(install_dir)" + cp -a $(APP_DIST) "$(install_dir)" + +$(tarball): $(DISTFILES) + rm -rf $(P) + mkdir -p $(P) + cp -a $(DISTFILES) $(P) + $(TAR) -jcf $@ $(P) + rm -rf $(P) + +# target that creates a tar package, unpacks is and install from package +dist-install: $(tarball) + $(TAR) -jxf $(tarball) + $(MAKE) -C $(P) install DESTDIR=$(DESTDIR) + rm -rf $(P) + +include config.mk + +.PHONY: all clean dist install dist-install |