From 8fdc4215690791d65377973b84d02dc44917a7ff Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 24 Mar 2011 08:05:08 +0000 Subject: Added in first two templates for Polycom and Linksys ATA --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3f4d1fc..4756a68 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,18 @@ VERSION=0.0.5 APP_DIST=\ provisioning* \ +TEMPLATE_DIST = templates/* + EXTRA_DIST=README Makefile config.mk -DISTFILES=$(APP_DIST) $(EXTRA_DIST) +DISTFILES=$(APP_DIST) $(EXTRA_DIST) $(TEMPLATE_DIST) TAR=tar P=$(PACKAGE)-$(VERSION) tarball=$(P).tar.bz2 install_dir=$(DESTDIR)/$(appdir)/$(APP_NAME) +template_dir=$(DESTDIR)/etc/provisioning/templates all: clean: @@ -24,6 +27,8 @@ dist: $(tarball) install: mkdir -p "$(install_dir)" cp -a $(APP_DIST) "$(install_dir)" + mkdir -p "$(template_dir)" + cp -a $(TEMPLATE_DIST) "$(template_dir)" $(tarball): $(DISTFILES) rm -rf $(P) -- cgit v1.2.3