summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2007-11-19 16:17:14 +0000
committerMika Havela <mika.havela@gmail.com>2007-11-19 16:17:14 +0000
commitcf6ff477f4bf27a00efd2e603f7bb87f6a4f0824 (patch)
tree4df9a2e8604061e8236e7b45bd511a220cd907b9 /Makefile
parent723453ae5dced317e70f6597efe17b4872ea35a2 (diff)
downloadacf-openvpn-cf6ff477f4bf27a00efd2e603f7bb87f6a4f0824.tar.bz2
acf-openvpn-cf6ff477f4bf27a00efd2e603f7bb87f6a4f0824.tar.xz
Initial functionsv1.0_alpha1
git-svn-id: svn://svn.alpinelinux.org/acf/openvpn/trunk@338 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..eb4c5eb
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,52 @@
+APP_NAME=openvpn
+PACKAGE=acf-$(APP_NAME)
+VERSION=1.0_alpha1
+
+APP_DIST=openvpn-client_config-html.lsp \
+ openvpn-controller.lua \
+ openvpn-logfile-html.lsp \
+ openvpn-model.lua \
+ openvpn-pem_info-html.lsp \
+ openvpn-read-html.lsp \
+ openvpn-server_config-html.lsp \
+ openvpn-status_info-html.lsp \
+ openvpn-unknown_config-html.lsp \
+ openvpn.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