summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2007-07-27 07:36:59 +0000
committerNatanael Copa <natanael.copa@gmail.com>2007-07-27 07:36:59 +0000
commit9f1fde7139cb5054a3468984624bbe3d04a5b0eb (patch)
tree82aebc31beb696adeb7d51d7fce2939133e547ed /Makefile
parentcee2c34a5d78a183b777d1d8a716de23ae37331b (diff)
downloadacf-alpine-baselayout-9f1fde7139cb5054a3468984624bbe3d04a5b0eb.tar.bz2
acf-alpine-baselayout-9f1fde7139cb5054a3468984624bbe3d04a5b0eb.tar.xz
new style of acf modulesv2.0
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@216 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile52
1 files changed, 52 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b3a4f40
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,52 @@
+APP_NAME=alpine-baselayout
+PACKAGE=acf-$(APP_NAME)
+VERSION=2.0
+
+APP_DIST=hostname-controller.lua \
+ hostname-html.lsp \
+ hostname-model.lua \
+ hostname.menu \
+ interfaces-controller.lua \
+ interfaces-create-html.lsp \
+ interfaces-delete-html.lsp \
+ interfaces-model.lua \
+ interfaces-read-html.lsp \
+ interfaces-update-html.lsp \
+ interfaces.menu
+
+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 $(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