8 lines
210 B
Makefile
8 lines
210 B
Makefile
|
|
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 --exclude=.git $^
|