mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-04 22:09:08 +00:00
cbf693b186
Vim's command buffer shows them literally, and then I get cranky
22 lines
350 B
Makefile
22 lines
350 B
Makefile
STATIC_ANALYSIS=
|
|
|
|
test:
|
|
cd tests/build && make && ./erc-test --ascii
|
|
|
|
build:
|
|
cd build && make
|
|
|
|
cmake:
|
|
cd build && cmake ..
|
|
cd tests/build && cmake ..
|
|
|
|
static:
|
|
cd build && STATIC_ANALYSIS=1 cmake ..
|
|
cd tests/build && STATIC_ANALYSIS=1 cmake ..
|
|
|
|
clean:
|
|
cd build && make clean
|
|
cd tests/build && make clean
|
|
|
|
.PHONY: test build cmake static clean
|