spiegel-keyman/linux/Makefile
glasseyes e4602588ee allow scripts to run on individual projects
potentially useful for jenkins if it has to make the source
packages individually
2018-09-15 17:49:26 +07:00

43 lines
679 B
Makefile

#!/usr/bin/make
tmpbuild: devreconf
./build.sh
install_local: devreconf
SUDOINSTALL="yes" ./build.sh
uninstall_local: devreconf
SUDOINSTALL="uninstall" ./build.sh
debnocow:
./deb.sh
reconf:
./reconf.sh
dist:
./dist.sh
origdist:
./dist.sh origdist
sourcepackage: reconf origdist
./deb.sh sourcepackage
devsourcepackage: devreconf origdist
./deb.sh sourcepackage
devreconf:
./reconf.sh dev
cow:
./cow.sh
deb: devreconf origdist cow debnocow
echo "Built dev Debian packages in builddebs/"
releasedeb: reconf origdist cow debnocow
echo "Built release Debian packages in builddebs/"
nightlydist: devreconf dist
echo "Built nightly source release in dist/"