-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (29 loc) · 1.11 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
THIS_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
##################################################
# Default target: builds project and runs tests. #
##################################################
all: build run
##########################################
# Creates the bin and build directories. #
##########################################
init:
mkdir -p ${THIS_DIR}/bin
mkdir -p ${THIS_DIR}/build
##########################################
# Removes the bin and build directories. #
##########################################
clean:
rm -rf ${THIS_DIR}/bin
rm -rf ${THIS_DIR}/build
#####################################################################################################
# Uses CMake to build the project in the build directory and install binaries in the bin directory. #
#####################################################################################################
build: init
cd ${THIS_DIR}/build && \
cmake ../ -DCMAKE_INSTALL_PREFIX=../bin -DCMAKE_BUILD_TYPE=Debug && \
make install
####################
# Runs unit tests. #
####################
run:
${THIS_DIR}/bin/tests