slotdb-cli/Makefile

19 lines
456 B
Makefile
Raw Permalink Normal View History

2025-03-13 22:29:05 +01:00
.PHONY: help all phar deb
2025-03-12 16:15:15 +01:00
help:
@echo "\e[1mTargets:\e[0m"
2025-03-13 22:29:05 +01:00
@echo " \e[3mall\e[0m — build everything\n \e[3mphar\e[0m — build the phar\n \e[3mdeb\e[0m — build deb package"
2025-03-12 16:15:15 +01:00
all: phar
phar:
2025-03-13 22:29:05 +01:00
echo "<?php return [ 'version' => '$(shell git describe --tags)', 'builddate' => '$(shell date)' ];" > src/build.php \
&& box compile \
&& echo "yay"
rm -f src/build.php
2025-03-12 16:15:15 +01:00
mv bin/slotcli.phar ./slotcli.phar
2025-03-13 22:29:05 +01:00
deb:
fakeroot -- dpack build --type deb
2025-03-12 16:15:15 +01:00