mirror of
https://github.com/boostorg/hana.git
synced 2026-01-22 17:22:30 +00:00
19 lines
265 B
Makefile
19 lines
265 B
Makefile
# Simple Makefile to ease day-to-day development
|
|
|
|
.PHONY: doc benchmark example include test gen-cmake
|
|
|
|
${VERBOSE}.SILENT:
|
|
|
|
%:
|
|
make -C build $@
|
|
|
|
all:
|
|
make -C build $@
|
|
|
|
doc:
|
|
make -C build $@
|
|
|
|
gen-cmake:
|
|
rm -rf build && mkdir build
|
|
cd build && cmake .. && cd ..
|