70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
# Copyright 2014 The CGMath Developers. For a full listing of the authors,
|
|
# refer to the AUTHORS file at the top-level directory of this distribution.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
RUSTC = rustc
|
|
RUSTDOC = rustdoc
|
|
|
|
SRC_DIR = src
|
|
LIB_FILE = $(SRC_DIR)/cgmath/lib.rs
|
|
TEST_FILE = $(SRC_DIR)/test/test.rs
|
|
BENCH_FILE = $(SRC_DIR)/bench/bench.rs
|
|
|
|
CRATE_NAME = $(shell $(RUSTC) --crate-name $(LIB_FILE))
|
|
CRATE_FILES = $(shell $(RUSTC) --crate-file-name $(LIB_FILE))
|
|
|
|
LIB_DIR = lib
|
|
TEST_DIR = test
|
|
BENCH_DIR = bench
|
|
DOC_DIR = doc
|
|
|
|
INSTALL_PREFIX = /usr/local
|
|
LIB_INSTALL_DIR = $(INSTALL_PREFIX)/lib
|
|
|
|
all: lib doc
|
|
|
|
lib: $(LIB_FILE)
|
|
mkdir -p $(LIB_DIR)
|
|
$(RUSTC) --out-dir=$(LIB_DIR) -O $(LIB_FILE)
|
|
|
|
test: lib
|
|
mkdir -p $(TEST_DIR)
|
|
$(RUSTC) -L $(LIB_DIR) --out-dir=$(TEST_DIR) --test $(TEST_FILE)
|
|
$(TEST_DIR)/test
|
|
|
|
bench: lib
|
|
mkdir -p $(BENCH_DIR)
|
|
$(RUSTC) -L $(LIB_DIR) --out-dir=$(BENCH_DIR) -O --test $(BENCH_FILE)
|
|
$(BENCH_DIR)/bench --bench
|
|
|
|
check: test bench
|
|
|
|
doc:
|
|
mkdir -p $(DOC_DIR)
|
|
$(RUSTDOC) -o $(DOC_DIR) $(LIB_FILE)
|
|
|
|
clean:
|
|
rm -rf $(LIB_DIR)
|
|
rm -rf $(TEST_DIR)
|
|
rm -rf $(BENCH_DIR)
|
|
rm -rf $(DOC_DIR)
|
|
|
|
.PHONY: \
|
|
all \
|
|
lib \
|
|
test \
|
|
bench \
|
|
check \
|
|
doc \
|
|
clean
|