1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-24 15:29:32 +00:00
erc-c/Makefile

18 lines
283 B
Makefile

STATIC_ANALYSIS=
test:
cd tests/build && make && ./erc-test
build:
cd build && make && ./erc
cmake:
cd build && cmake ..
cd tests/build && cmake ..
static:
cd build && STATIC_ANALYSIS=1 cmake ..
cd tests/build && STATIC_ANALYSIS=1 cmake ..
.PHONY: test build cmake static