diff options
author | Alan Messias Cordeiro <alancordeiro@gmail.com> | 2013-12-09 17:26:07 +0000 |
---|---|---|
committer | Alan Messias Cordeiro <alancordeiro@gmail.com> | 2013-12-09 17:26:07 +0000 |
commit | 91a6628bd0bb34843bb40a39edcd69b763cdfdb8 (patch) | |
tree | 3b756317157556a71ebe0c752eafdef297839806 /Makefile | |
parent | 64522968bc69d1fa839c64874a543398cf759473 (diff) | |
download | acf-openldap-0.1.1.tar.bz2 acf-openldap-0.1.1.tar.xz |
Added files for Make installv0.1.1
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..4038d80 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +APP_NAME=openldap +PACKAGE=acf-$(APP_NAME) +VERSION=0.1 + +APP_DIST=\ + openldap* \ + +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 + |