socialbox-php/Makefile

23 lines
438 B
Makefile
Raw Normal View History

2024-08-31 16:36:22 -04:00
# Variables
CONFIG ?= release
LOG_LEVEL = debug
OUTDIR = build/$(CONFIG)
PACKAGE = $(OUTDIR)/net.nosial.socialbox.ncc
# Default Target
all: build
# Build Steps
build:
ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL)
2024-09-24 14:20:21 -04:00
install: build
ncc package install --package=$(PACKAGE) --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
test: build
phpunit
2024-08-31 16:36:22 -04:00
clean:
rm -rf build
2024-09-24 14:20:21 -04:00
.PHONY: all build install test clean