mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
11 lines
149 B
Makefile
11 lines
149 B
Makefile
all: .obj/build.ninja
|
|
@ninja -C .obj test
|
|
|
|
clean:
|
|
rm -rf .obj
|
|
|
|
.obj/build.ninja:
|
|
@mkdir -p .obj
|
|
meson .obj --buildtype=debugoptimized
|
|
|