Initial import

This commit is contained in:
Pierre Pronchery 2013-01-03 01:11:43 +01:00
parent 6271c3af0e
commit c7193f5ebb
2 changed files with 25 additions and 0 deletions

21
data/Makefile Normal file
View File

@ -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

4
data/project.conf Normal file
View File

@ -0,0 +1,4 @@
dist=Makefile,VPN.interface,appbroker.sh
[VPN.interface]
install=$(PREFIX)/etc/AppInterface