tgbotlib/Makefile

35 lines
1,010 B
Makefile
Raw Normal View History

# Variables
2024-10-10 14:24:43 -04:00
DEFAULT_CONFIG ?= release
LOG_LEVEL = debug
2024-10-10 14:24:43 -04:00
PACKAGE = build/$(CONFIG)/net.nosial.tgbotlib.ncc
# Default Target
all: build
# Build Steps
2024-10-10 14:24:43 -04:00
release:
ncc build --config=release --log-level $(LOG_LEVEL)
release-compressed:
ncc build --config=release-compressed --log-level $(LOG_LEVEL)
release-executable:
ncc build --config=release-executable --log-level $(LOG_LEVEL)
release-executable-compressed:
ncc build --config=release-executable-compressed --log-level $(LOG_LEVEL)
debug:
ncc build --config=debug --log-level $(LOG_LEVEL)
debug-compressed:
ncc build --config=debug-compressed --log-level $(LOG_LEVEL)
build: release release-compressed release-executable release-executable-compressed debug debug-compressed
2023-02-12 13:41:43 -05:00
install: build
ncc package install --package=$(PACKAGE) --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
test: build
2024-10-10 14:24:43 -04:00
[ -f phpunit.xml ] || { echo "phpunit.xml not found"; exit 1; }
phpunit
2023-02-12 13:41:43 -05:00
2023-03-01 19:14:35 -05:00
clean:
rm -rf build
.PHONY: all build install test clean