Initial import
This commit is contained in:
parent
6271c3af0e
commit
c7193f5ebb
21
data/Makefile
Normal file
21
data/Makefile
Normal 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
4
data/project.conf
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
dist=Makefile,VPN.interface,appbroker.sh
|
||||||
|
|
||||||
|
[VPN.interface]
|
||||||
|
install=$(PREFIX)/etc/AppInterface
|
Loading…
Reference in New Issue
Block a user