mirror of
https://github.com/boostorg/hana.git
synced 2026-02-11 11:52:13 +00:00
21 lines
319 B
Makefile
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 ..
|