-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
52 lines (38 loc) · 936 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
52
# My makefile
# Name of the project
PROJ_NAME=caldeira_control
# .c files
C_SOURCE=$(wildcard ./source/*.c)
# .h files
H_SOURCE=$(wildcard ./source/*.h)
# Object files
OBJ=$(subst .c,.o,$(subst source,objects,$(C_SOURCE)))
# Compiler and linker
CC=gcc
# Flags for compiler
CC_FLAGS=-c -lpthread
# Command used at clean target
RM = rm -rf
#
# Compilation and linking
#
all: objFolder $(PROJ_NAME)
$(PROJ_NAME): $(OBJ)
@ echo 'Building binary using GCC linker: $@'
$(CC) -o $@ $^ -lpthread -lrt
@ echo 'Finished building binary: $@'
@ echo ' '
./objects/%.o: ./source/%.c ./source/%.h
@ echo 'Building target using GCC compiler: $<'
$(CC) -o $@ $< $(CC_FLAGS)
@ echo ' '
./objects/main.o: ./source/main.c $(H_SOURCE)
@ echo 'Building target using GCC compiler: $<'
$(CC) -o $@ $< $(CC_FLAGS)
@ echo ' '
objFolder:
@ mkdir -p objects
clean:
@ $(RM) ./objects/*.o $(PROJ_NAME) *~
@ rmdir objects
.PHONY: all clean