-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
51 lines (38 loc) · 937 Bytes
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Name of the project
PROJ_NAME=vrp
# .cpp files
CPP_SOURCE=$(wildcard ./source/*.cpp)
# .h files
H_SOURCE=$(wildcard ./source/*.h)
# Object files
OBJ=$(subst .cpp,.o,$(subst source,objetos,$(CPP_SOURCE)))
# Compiler and linker
CC=g++
# Flags for compiler
CC_FLAGS=-c \
-Wall
# Command used at clean target
RM = rm -rf
#
# Compilation and linking
#
all: objFolder $(PROJ_NAME)
$(PROJ_NAME): $(OBJ)
@ echo 'Building binary using G++ linker: $@'
$(CC) $^ -o $@
@ echo 'Finished building binary: $@'
@ echo ' '
./objetos/%.o: ./source/%.cpp ./source/%.h
@ echo 'Building target using G++ compiler: $<'
$(CC) $< $(CC_FLAGS) -o $@
@ echo ' '
./objetos/main.o: ./source/main.cpp $(H_SOURCE)
@ echo 'Building target using G++ compiler: $<'
$(CC) $< $(CC_FLAGS) -o $@
@ echo ' '
objFolder:
@ mkdir -p objetos
clean:
@ $(RM) ./objetos/*.o $(PROJ_NAME) *~
@ rmdir objetos
.PHONY: all clean