2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-20 02:42:14 +00:00
Files
hana/Makefile
2014-05-18 17:57:01 -04:00

21 lines
310 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
make -C build $@
%:
make -C build $@
doc:
make -C build $@ $(args)
gen-cmake:
rm -rf build && mkdir build
cd build && cmake .. && cd ..