Initial version of Makefile. Used for creating tar archive of modules.
This commit is contained in:
parent
26e9ece24d
commit
4e6d5acba2
1 changed files with 8 additions and 0 deletions
8
Makefile
Normal file
8
Makefile
Normal 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 $^
|
Loading…
Add table
Reference in a new issue