-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (40 loc) · 1.04 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
export ROOT_DIR=$(shell pwd)
export SRC_DIR = src
export INCL_DIR = include
export EXPL_DIR = examples
export TEST_DIR = test
export DOC_DIR = DOCS
export CC=gcc
# Debugage
export CFLAGS=-Wall -g -DDEBUG_NDES
export LDFLAGS=-g -L../$(SRC_DIR) -lndes -lm
# Performances
#export CFLAGS=-Wall -g -DNDEBUG -O3
#export LDFLAGS=-g -O3 -L../$(SRC_DIR) -lndes -lm
# Génération d'une librairie avec les log intégrés
#export CFLAGS += -DNDES_USES_LOG
# En cours de réécriture des événements
#export CFLAGS += -DEVENTS_ARE_NDES_OBJECTS
default : src
all : src tests examples doc
.PHONY: clean src examples test
src :
@(cd $(SRC_DIR) && $(MAKE))
examples :
@(cd $(EXPL_DIR) && $(MAKE))
doc :
@(cd $(DOC_DIR) && $(MAKE))
install : src
@(mkdir lib || true)
cp src/libndes.a lib
tests-bin :
@(cd $(TEST_DIR) && $(MAKE))
tests : tests-bin
@(cd $(TEST_DIR) && $(MAKE) tests)
clean :
@(cd $(SRC_DIR) && $(MAKE) $@)
@(cd $(EXPL_DIR) && $(MAKE) $@)
@(cd $(TEST_DIR) && $(MAKE) $@)
@(cd $(DOC_DIR) && $(MAKE) $@)
.c.o :
$(CC) -I. $< -c