forked from mraali2012/CRheoLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
72 lines (53 loc) · 1.69 KB
/
Makefile
File metadata and controls
72 lines (53 loc) · 1.69 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# 'make' build executable file 'main'
# 'make clean' removes all .o and executable files
#
# define the Cpp compiler to use
CXX = g++
# define any compile-time flags
CXXFLAGS := -std=c++14 -g -Wall
# define library paths in addition to /usr/lib
# if I wanted to include libraries not in /usr/lib I'd specify
# their path using -Lpath, something like:
LFLAGS = -lboost_filesystem -lboost_system
# define output directory
OUTPUT := run
# define source directory
SRC_DIR := src
# define obj directory
OBJ_DIR := obj
# define bin directory
BIN_DIR := bin
MAIN := bin/CRheo
FIXPATH = $1
RM = rm -f
MD := mkdir -p
# define the C source files
SRC_FILES := $(wildcard $(SRC_DIR)/*.cpp)
OBJ_FILES := $(patsubst $(SRC_DIR)/%.cpp,$(OBJ_DIR)/%.o,$(SRC_FILES))
# The following part of the makefile is generic; it can be used to
# build any executable just by changing the definitions above and by
# deleting dependencies appended to the file from 'make depend'
all: $(OUTPUT) $(MAIN)
@echo Executing 'all' complete!
$(OUTPUT):
$(MD) $(OUTPUT)
### To create automatically the obj and bin directory
$(shell $(MD) $(OBJ_DIR))
$(shell $(MD) $(BIN_DIR))
$(MAIN): $(OBJ_FILES)
#$(CXX) $(CXXFLAGS) -o $@ $^ $(LFLAGS)
# this is a suffix replacement rule for building .o's from .c's
# it uses automatic variables $<: the name of the prerequisite of
# the rule(a .c file) and $@: the name of the target of the rule (a .o file)
# (see the gnu make manual section about automatic variables)
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
$(CXX) $(CXXFLAGS) -c -o $@ $<
.PHONY: clean
clean:
$(RM) $(MAIN)
$(RM) $(call FIXPATH,$(OBJ_FILES))
@echo Cleanup complete!
runs: all
./$(OUTPUTMAIN)
@echo Executing 'run: all' complete!!