-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
35 lines (27 loc) · 1.05 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
35
# Choose your compiler (depending on your environment clang/gcc)
CC=gcc
# Add flags to the compilation
CC_FLAGS=-Wpedantic -Wall -g
# These variables hold the name of all source files/headers/object files
SRCS=$(wildcard src/*.c)
HEADERS=$(wildcard src/*.h)
OBJECTS=$(patsubst src/%.c,bin/%.o,$(SRCS))
# To display one of the above variable, uncomment the next line
$(info SRCS is $(SRCS))
$(info HEADERS is $(HEADERS))
$(info OBJECTS is $(OBJECTS))
# This rule produces the executable by compiling and linking all objects
# $< are the names of all prerequisites (the object files)
# $@ is the name of the target (bin/womc in this case)
bin/annuaire: $(OBJECTS)
$(CC) $^ $(CC_FLAGS) -o $@
# must start with TAB character
# This rule produces all object files
# -c option tells gcc to only compile one source file at a tile
# $< is the name of the first prerequisite (the c file in this case)
bin/%.o: src/%.c $(HEADERS)
$(CC) $< $(CC_FLAGS) -c -o $@
# must start with TAB character
.PHONY: clean
clean:
rm -f $(OBJECTS) womc