From c7193f5ebb9325046344f3e01131ee599b7432bd Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 3 Jan 2013 01:11:43 +0100 Subject: [PATCH] Initial import --- data/Makefile | 21 +++++++++++++++++++++ data/project.conf | 4 ++++ 2 files changed, 25 insertions(+) create mode 100644 data/Makefile create mode 100644 data/project.conf diff --git a/data/Makefile b/data/Makefile new file mode 100644 index 0000000..23df4db --- /dev/null +++ b/data/Makefile @@ -0,0 +1,21 @@ +PREFIX = /usr/local +DESTDIR = +MKDIR ?= mkdir -p +INSTALL ?= install +RM ?= rm -f + + +all: + +clean: + +distclean: clean + +install: + $(MKDIR) $(DESTDIR)$(PREFIX)/etc/AppInterface + $(INSTALL) -m 0644 -- VPN.interface $(DESTDIR)$(PREFIX)/etc/AppInterface/VPN.interface + +uninstall: + $(RM) -- $(DESTDIR)$(PREFIX)/etc/AppInterface/VPN.interface + +.PHONY: all clean distclean install uninstall diff --git a/data/project.conf b/data/project.conf new file mode 100644 index 0000000..0ac0557 --- /dev/null +++ b/data/project.conf @@ -0,0 +1,4 @@ +dist=Makefile,VPN.interface,appbroker.sh + +[VPN.interface] +install=$(PREFIX)/etc/AppInterface