mirror of
https://github.com/darlinghq/xcbuild.git
synced 2024-11-27 05:50:27 +00:00
39 lines
949 B
Makefile
39 lines
949 B
Makefile
#
|
|
# Copyright (c) 2015-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
#
|
|
|
|
build := build
|
|
project := project
|
|
|
|
cmake := cmake
|
|
cmake_flags := -DCMAKE_INSTALL_PREFIX=
|
|
|
|
ninja := $(if $(shell which llbuild),llbuild ninja build,ninja)
|
|
ninja_flags := $(if $(shell echo "$$NINJA_JOBS"),-j$(shell echo "$$NINJA_JOBS"),)
|
|
|
|
all:
|
|
mkdir -p $(build)
|
|
$(cmake) -B$(build) -H. -G Ninja $(cmake_flags)
|
|
$(ninja) -C $(build) $(ninja_flags)
|
|
|
|
install: all
|
|
@DESTDIR=$(realpath $(PREFIX)) \
|
|
$(ninja) -C $(build) $(ninja_flags) install
|
|
|
|
project:
|
|
mkdir -p $(project)
|
|
$(cmake) -B$(project) -H. -G Xcode $(cmake_flags)
|
|
|
|
test: all
|
|
set -e; for test in build/test_*; do echo; echo "$$test"; ./$$test; done
|
|
|
|
clean:
|
|
rm -rf $(build)
|
|
|
|
.PHONY: project
|