configlib/Makefile

20 lines
390 B
Makefile
Raw Normal View History

# Variables
CONFIG ?= release
LOG_LEVEL = debug
OUTDIR = build/$(CONFIG)
PACKAGE = $(OUTDIR)/net.nosial.configlib.ncc
# Default Target
all: build
# Build Steps
2023-07-11 14:33:23 -04:00
build:
ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL)
2023-07-11 14:33:23 -04:00
install:
ncc package install --package=$(PACKAGE) --skip-dependencies --reinstall -y --log-level $(LOG_LEVEL)
2023-07-11 14:33:23 -04:00
clean:
rm -rf build
.PHONY: all build install clean