2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-11 11:52:13 +00:00
Files
hana/Makefile
2014-05-24 13:28:48 -04:00

21 lines
319 B
Makefile

# Simple Makefile forwarding to the build directory.
.PHONY: all gen-cmake doc
# Suppress the output of the forwarding of commands.
${VERBOSE}.SILENT:
all: tests examples
make -C build $@
%:
make -C build $@
doc:
make -C build $@ $(args)
gen-cmake:
rm -rf build && mkdir build
cd build && cmake .. && cd ..