This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
85 lines (60 loc) · 1.59 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
######################################
# target
######################################
TARGET = ndsblc
# Add extension for clean in Windows
UNAME = $(shell uname -s)
ifneq (,$(findstring MINGW,$(UNAME))$(findstring CYGWIN,$(UNAME)))
TARGET_EXT = .exe
endif
######################################
# building variables
######################################
# optimization
OPT = -O3
#######################################
# paths
#######################################
# Build path
BUILD_DIR = build
######################################
# source
######################################
# C sources
C_SOURCES = $(wildcard src/*.c)
#######################################
# binaries
#######################################
CC = gcc
#######################################
# CFLAGS
#######################################
# C includes
C_INCLUDES = \
-Iinc
# compile gcc flags
CFLAGS = $(C_INCLUDES) $(OPT) -Wall
#######################################
# LDFLAGS
#######################################
LDFLAGS =
# default action: build all
all: $(TARGET)
#######################################
# build the application
#######################################
# list of objects
OBJECTS = $(addprefix $(BUILD_DIR)/,$(notdir $(C_SOURCES:.c=.o)))
vpath %.c $(sort $(dir $(C_SOURCES)))
$(BUILD_DIR)/%.o: %.c Makefile | $(BUILD_DIR)
@$(CC) -c $(CFLAGS) $< -o $@
$(TARGET): $(OBJECTS) Makefile
@$(CC) $(OBJECTS) $(LDFLAGS) -o $@
$(BUILD_DIR):
@mkdir $@
#######################################
# clean up
#######################################
clean:
@rm -Rf $(BUILD_DIR) $(TARGET)$(TARGET_EXT)
# *** EOF ***