-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
42 lines (27 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
35
36
37
38
39
40
41
42
TARGET = jeu
TEST_TARGET = test
# Compilateur
CC = g++
# Dossiers
CMP_DIR = component
SRC_DIR = src
INC_DIR = include
SAFARI_DIR = Safari
# Options de compilation
CFLAGS = -Wall -std=c++11 -I$(INC_DIR)
# Drapeaux de liaison pour SFML
SFML_FLAGS = -lsfml-graphics -lsfml-window -lsfml-system
# Fichiers source
SRC = $(SRC_DIR)/main.cpp $(SRC_DIR)/$(CMP_DIR)/Jeu.cpp $(SRC_DIR)/Butin.cpp $(SRC_DIR)/$(CMP_DIR)/Damier.cpp $(SRC_DIR)/$(CMP_DIR)/Pion.cpp $(SRC_DIR)/Dames.cpp $(SRC_DIR)/$(SAFARI_DIR)/Safari.cpp $(SRC_DIR)/$(SAFARI_DIR)/Barriere.cpp $(SRC_DIR)/$(SAFARI_DIR)/JoueurSafari.cpp
TEST_SRC = $(SRC_DIR)/test.cpp $(SRC_DIR)/$(SAFARI_DIR)/Safari.cpp $(SRC_DIR)/$(CMP_DIR)/Pion.cpp $(SRC_DIR)/$(CMP_DIR)/Jeu.cpp $(SRC_DIR)/$(CMP_DIR)/Damier.cpp $(SRC_DIR)/$(SAFARI_DIR)/Barriere.cpp $(SRC_DIR)/$(SAFARI_DIR)/JoueurSafari.cpp
# Règle par défaut
all: $(TARGET)
# Règle de compilation
$(TARGET): $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $(TARGET) $(SFML_FLAGS)
# Règle pour le test
test: $(TEST_SRC)
$(CC) $(CFLAGS) $(TEST_SRC) -o $(TEST_TARGET) $(SFML_FLAGS)
# Règle de nettoyage
clean:
rm -f $(TARGET) $(TEST_TARGET)