xcbuild/Makefile
2015-11-04 22:19:13 -08:00

22 lines
302 B
Makefile

# Copyright 2013-present Facebook. All Rights Reserved.
build := build
cmake := cmake
cmake_flags := -G Ninja
ninja := ninja
ninja_flags :=
all:
mkdir -p $(build)
cd $(build) && $(cmake) $(cmake_flags) ..
cd $(build) && $(ninja) $(ninja_flags)
test: all
build/test_*
clean:
rm -rf $(build)