diff options
| author | Ted Trask <ttrask01@yahoo.com> | 2009-11-18 11:06:10 +0000 |
|---|---|---|
| committer | Ted Trask <ttrask01@yahoo.com> | 2009-11-18 11:06:10 +0000 |
| commit | e143e99ebf2ead069cb4d820e276835816bd9e25 (patch) | |
| tree | a016e0a75a8966acd3e202285ba69d7f9a9370df /Makefile | |
| download | acf-did-e143e99ebf2ead069cb4d820e276835816bd9e25.tar.bz2 acf-did-e143e99ebf2ead069cb4d820e276835816bd9e25.tar.xz | |
Created telephone DID application.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..850529d --- /dev/null +++ b/Makefile @@ -0,0 +1,45 @@ +APP_NAME=did +PACKAGE=acf-$(APP_NAME) +VERSION=0.0.1 + +APP_DIST=\ + did* \ + template-did-editdefinition-html.lsp \ + + +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 |
