Makefile 1.88 KB
Newer Older
1
2
CC = gcc
MCC = mpicc
3
#C_FLAGS_ALL = -Wconversion -Wpedantic
4
C_FLAGS = -Wall -Wextra -Wshadow -Wfatal-errors
5
LD_FLAGS = -lm -pthread
6

7
8
9
MAM_USE_SLURM ?= 0
MAM_USE_BARRIERS ?= 0
MAM_DEBUG ?= 0
10

11
ifeq ($(MAM_USE_SLURM),1)
12
13
    LD_FLAGS += -lslurm
endif
14
DEF = -DMAM_USE_SLURM=$(MAM_USE_SLURM) -DMAM_USE_BARRIERS=$(MAM_USE_BARRIERS) -DMAM_DEBUG=$(MAM_DEBUG)
15

16

iker_martin's avatar
iker_martin committed
17
.PHONY : clean clear install
18
19
20

# Final binary
BIN = a.out
21
CONFIG = config.txt
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Put all auto generated stuff to this build dir.
BUILD_DIR = ./build

# List of all directories where source files are located
SRCDIRS = IOcodes Main malleability malleability/spawn_methods malleability/distribution_methods

# List of all .c source files.
C_FILES = $(foreach dire, $(SRCDIRS), $(wildcard $(dire)/*.c))

# All .o files go to build dir.
OBJ = $(C_FILES:%.c=$(BUILD_DIR)/%.o)
# Gcc will create these .d files containing dependencies.
DEP = $(OBJ:%.o=%.d)

iker_martin's avatar
iker_martin committed
36
37
# Default configuration file
$(CONFIG) : $(BUILD_DIR)/$(CONFIG)
38
39
40
# Default target named after the binary.
$(BIN) : $(BUILD_DIR)/$(BIN)

41
$(BUILD_DIR)/$(CONFIG) :
iker_martin's avatar
iker_martin committed
42
	@mkdir -p $(@D)
43
	@ echo -n "dir=\"" > $(BUILD_DIR)/$(CONFIG)
44
	@ realpath -z $$(echo "$$(pwd)/..") | tr -d '\0' >> $(BUILD_DIR)/$(CONFIG)
45
46
	@ echo "\"" >> $(BUILD_DIR)/$(CONFIG)

47
48
# Actual target of the binary - depends on all .o files.
$(BUILD_DIR)/$(BIN) : $(OBJ)
49
	$(MCC) $(C_FLAGS) $^ -o $@ $(LD_FLAGS)
50
51
52
53
54
55
56
57
58
59
60

# Include all .d files
# .d files are used for knowing the dependencies of each source file
-include $(DEP)

# Build target for every single object file.
# The potential dependency on header files is covered
# by calling `-include $(DEP)`.
# The -MMD flags additionaly creates a .d file with
# the same name as the .o file.
$(BUILD_DIR)/%.o : %.c
iker_martin's avatar
iker_martin committed
61
	@mkdir -p $(@D)
62
	$(MCC) $(C_FLAGS) $(DEF) -MMD -c $< -o $@
63

iker_martin's avatar
iker_martin committed
64

65
clean:
66
	-rm $(BUILD_DIR)/$(BIN) $(BUILD_DIR)/$(CONFIG) $(OBJ) $(DEP)
67
clear:
iker_martin's avatar
iker_martin committed
68
	-rm -rf $(BUILD_DIR)
69

iker_martin's avatar
iker_martin committed
70
all: install
71

72
install: $(BIN) $(CONFIG)
73
	echo "Done"