Updated Project files

This commit is contained in:
netkas 2024-09-24 14:20:21 -04:00
parent f13009733d
commit fc2e4d5a73
7 changed files with 76 additions and 169 deletions

View file

@ -11,10 +11,13 @@ all: build
build:
ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL)
install:
ncc package install --package=$(PACKAGE) --skip-dependencies --reinstall -y --log-level $(LOG_LEVEL)
install: build
ncc package install --package=$(PACKAGE) --skip-dependencies --build-source --reinstall -y --log-level $(LOG_LEVEL)
test: build
phpunit
clean:
rm -rf build
.PHONY: all build install clean
.PHONY: all build install test clean