14 lines
164 B
Makefile
14 lines
164 B
Makefile
|
DIR=build
|
||
|
|
||
|
.PHONY: build tests libs
|
||
|
|
||
|
build:
|
||
|
meson setup $(DIR)
|
||
|
meson compile -C $(DIR)
|
||
|
|
||
|
tests: build
|
||
|
$(DIR)/fakir-tests
|
||
|
|
||
|
install: tests
|
||
|
meson install -C $(DIR)
|