12 lines
192 B
Makefile
12 lines
192 B
Makefile
all: build
|
|
|
|
include ../mk/makefile.utils
|
|
|
|
update-libipc:
|
|
git submodule update
|
|
|
|
ZIG_OPTS ?=
|
|
ZIG_OPTIM ?= ReleaseSafe
|
|
build:
|
|
zig build -Doptimize=$(ZIG_OPTIM) $(ZIG_OPTS) $(ZIG_STATIC_BUILD)
|