-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
67 lines (47 loc) · 1.27 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
57
58
59
60
61
62
63
64
65
66
67
##
## SEAGNAL PROJECT, 2024
## netcdf-display
## File description:
## The main Makefile of our project
##
NAME = netcdf-display
CC = gcc
BUILDDIR = ./build
SRCDIR = ./src
SRCS = $(shell find $(SRCDIR) -path ./tests -prune -o -type f -name "*.c" -print)
OBJS = $(addprefix $(BUILDDIR)/, $(notdir $(SRCS:.c=.o)))
CFLAGS = -Werror -Wextra -I./include/
DEBUGFLAGS = -g3 -DDEBUG_MODE
OPTIMIZEFLAGS = -O3
LDFLAGS = -lnetcdf
.PHONY: all create-build debug clean fclean re color
all: create-build $(BUILDDIR) $(NAME)
@echo -e "\033[1;33m$(NAME) compiled.\033[0m"
create-build:
@mkdir -p $(BUILDDIR)
$(BUILDDIR)/%.o: $(SRCDIR)/%.c
$(CC) $(CFLAGS) $(OPTIMIZEFLAGS) $(LDFLAGS) -c $< -o $@
debug: CFLAGS += $(DEBUGFLAGS) -DCOLOR
debug: OPTIMIZEFLAGS =
debug: all
color: CFLAGS += -DCOLOR
color: all
$(NAME): $(OBJS)
@$(CC) $(OBJS) $(CFLAGS) $(OPTIMIZEFLAGS) $(LDFLAGS) -o $(NAME)
clean:
@rm -rf $(BUILDDIR)
@echo -e "\033[1;31mAll .o deleted.\033[0m"
fclean: clean
@rm -rf vgcore*
@rm -rf *.log
@rm -rf $(NAME)
@echo -e "\033[1;31mProject cleaned.\033[0m"
re: fclean all
re_debug: fclean debug
re_color: fclean color
# Documentation
doc:
@mkdir -p docs/html
@doxygen Doxyfile
@echo -e "\033[1;33mDocumentation generated.\033[0m"
@google-chrome docs/html/index.html