-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
155 lines (114 loc) · 3.15 KB
/
Makefile
File metadata and controls
155 lines (114 loc) · 3.15 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileContributor: Antonio Niño Díaz, 2023-2025
# Source code paths
# -----------------
SOURCEDIRS := source
INCLUDEDIRS := source
# Version string handling
# -----------------------
# Try to generate a version string if it isn't already provided
ifeq ($(VERSION_STRING),)
# Try an exact match with a tag (e.g. v1.12.1)
VERSION_STRING := $(shell git describe --tags --exact-match --dirty 2>/dev/null)
ifeq ($(VERSION_STRING),)
# Try a non-exact match (e.g. v1.12.1-3-g67a811a)
VERSION_STRING := $(shell git describe --tags --dirty 2>/dev/null)
ifeq ($(VERSION_STRING),)
# If no version is provided by the user or git, fall back to this
VERSION_STRING := DEV
endif
endif
endif
# Defines passed to all files
# ---------------------------
DEFINES := -DVERSION_STRING=\"$(VERSION_STRING)\"
# Libraries
# ---------
# Some hack to compile on macOS, which needs libiconv explicitly defined
UNAME := $(shell uname -s)
ifeq ($(UNAME),Darwin)
LIBS := -liconv
else
LIBS :=
endif
LIBDIRS :=
# Build artifacts
# ---------------
NAME := ndstool
BUILDDIR := build
ELF := $(NAME)
# Tools
# -----
STRIP := -s
BINMODE := 755
HOSTCC ?= gcc
HOSTCXX ?= g++
CP := cp
MKDIR := mkdir
RM := rm -rf
MAKE := make
INSTALL := install
# Verbose flag
# ------------
ifeq ($(VERBOSE),1)
V :=
else
V := @
endif
# Source files
# ------------
SOURCES_C := $(shell find -L $(SOURCEDIRS) -name "*.c")
SOURCES_CPP := $(shell find -L $(SOURCEDIRS) -name "*.cpp")
# Compiler and linker flags
# -------------------------
WARNFLAGS_C := -Wall -Wextra -Wpedantic -Wstrict-prototypes
WARNFLAGS_CXX := -Wall -Wextra
ifeq ($(SOURCES_CPP),)
HOSTLD := $(HOSTCC)
else
HOSTLD := $(HOSTCXX)
endif
INCLUDEFLAGS := $(foreach path,$(INCLUDEDIRS),-I$(path)) \
$(foreach path,$(LIBDIRS),-I$(path)/include)
LIBDIRSFLAGS := $(foreach path,$(LIBDIRS),-L$(path)/lib)
CFLAGS += $(WARNFLAGS_C) $(DEFINES) $(INCLUDEFLAGS) -O3
CXXFLAGS += $(WARNFLAGS_CXX) $(DEFINES) $(INCLUDEFLAGS) -O3
LDFLAGS += $(LIBDIRSFLAGS) $(LIBS)
# Intermediate build files
# ------------------------
OBJS := $(addsuffix .o,$(addprefix $(BUILDDIR)/,$(SOURCES_C))) \
$(addsuffix .o,$(addprefix $(BUILDDIR)/,$(SOURCES_CPP)))
DEPS := $(OBJS:.o=.d)
# Targets
# -------
.PHONY: all clean install
all: $(ELF)
$(ELF): $(OBJS)
@echo " HOSTLD $@"
$(V)$(HOSTLD) -o $@ $(OBJS) $(LDFLAGS)
clean:
@echo " CLEAN "
$(V)$(RM) $(ELF) $(BUILDDIR)
INSTALLDIR ?= /opt/blocksds/core/tools/ndstool
INSTALLDIR_ABS := $(abspath $(INSTALLDIR))
install: all
@echo " INSTALL $(INSTALLDIR_ABS)"
@test $(INSTALLDIR_ABS)
$(V)$(RM) $(INSTALLDIR_ABS)
$(V)$(INSTALL) -d $(INSTALLDIR_ABS)
$(V)$(INSTALL) $(STRIP) -m $(BINMODE) $(NAME) $(INSTALLDIR_ABS)
$(V)$(CP) ./COPYING* $(INSTALLDIR_ABS)
# Rules
# -----
$(BUILDDIR)/%.c.o : %.c
@echo " HOSTCC $<"
@$(MKDIR) -p $(@D)
$(V)$(HOSTCC) $(CFLAGS) -MMD -MP -c -o $@ $<
$(BUILDDIR)/%.cpp.o : %.cpp
@echo " HOSTCXX $<"
@$(MKDIR) -p $(@D)
$(V)$(HOSTCXX) $(CXXFLAGS) -MMD -MP -c -o $@ $<
# Include dependency files if they exist
# --------------------------------------
-include $(DEPS)