Initial version of Makefile. Used for creating tar archive of modules.

This commit is contained in:
Timo Mkinen 2009-10-27 15:14:22 +02:00
parent 26e9ece24d
commit 4e6d5acba2

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
MODULES = $(shell find . -maxdepth 1 -mindepth 1 -type d)
all: puppet-modules.tar.gz
puppet-modules.tar.gz: $(MODULES)
umask 022 ; tar zcvf $@ --owner=root --group=root \
--mode g-w,o=g $^