mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
15 lines
298 B
Makefile
Executable File
15 lines
298 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PKGFILES = pkg/*.service pkg/*.upstart pkg/*.logrotate
|
|
SALT_BIN = common minion master syndic
|
|
|
|
%:
|
|
make -C doc html
|
|
cp $(PKGFILES) debian
|
|
for d in $(SALT_BIN); do \
|
|
cp pkg/salt.postrm debian/salt-$${d}.postrm; done
|
|
dh $@
|
|
|
|
dh_override_auto_build:
|
|
python setup.py build
|