14 lines
209 B
Makefile
14 lines
209 B
Makefile
.PHONY: help all phar
|
|
|
|
help:
|
|
@echo "\e[1mTargets:\e[0m"
|
|
@echo " \e[3mall\e[0m — build everything\n \e[3mphar\e[0m — build the phar"
|
|
|
|
all: phar
|
|
|
|
phar:
|
|
box compile
|
|
mv bin/slotcli.phar ./slotcli.phar
|
|
|
|
|