summaryrefslogtreecommitdiff
path: root/agbx/GNUmakefile
blob: e3ea1b09ec89155df5621cda838b4ae816cb246f (plain) (blame)
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
# Copyright 2022 Gabriel Jensen.
# This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
# If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.

# TOOLS

AS      := arm-none-eabi-as
#CC      := arm-none-eabi-gcc -Dbool="_Bool" -Dfalse="((_Bool)+0x0u)" -Dfalse="((_Bool)+0x0u)"
CC      := clang --target=arm-none-eabi
#CXX      := arm-none-eabi-g++ 
CXX     := clang++ --target=arm-none-eabi
OBJCOPY := arm-none-eabi-objcopy

# TOOL FLAGS

CFLAGS := \
	-Iinclude                  \
	-Iinclude-private          \
	-Ofast                     \
	-Wall                      \
	-Wextra                    \
	-Wpedantic                 \
	-Wno-gnu-binary-literal    \
	-Wno-gnu-empty-initializer \
	-ffreestanding             \
	-fno-builtin               \
	-fno-strict-aliasing       \
	-fshort-enums              \
	-mcpu=arm7tdmi             \
	-mthumb                    \
	-mtune=arm7tdmi            \
	-nostdlib                  \
	-std=c2x

CXXFLAGS := \
	-Iinclude            \
	-Iinclude-private    \
	-Ofast               \
	-Wall                \
	-Wextra              \
	-Wpedantic           \
	-ffreestanding       \
	-fno-builtin         \
	-fno-exceptions      \
	-fno-strict-aliasing \
	-fshort-enums        \
	-mcpu=arm7tdmi       \
	-mthumb              \
	-mtune=arm7tdmi      \
	-nostdlib            \
	-std=c++2b

# HEADERS

HDRS := \
	include/ax/bs.h           \
	include/ax/gfx.h          \
	include/ax/key.h          \
	include-private/ax/priv.h

# BINARIES

OBJS := \
	source/bs/done.o       \
	source/bs/get.o        \
	source/bs/set.o        \
	source/gfx/clrscrn.o   \
	source/gfx/flip.o      \
	source/gfx/getvbnk.o   \
	source/gfx/plot.o      \
	source/gfx/plottex.o   \
	source/gfx/rd.o        \
	source/gfx/vsync.o     \
	source/key/getkeymap.o \
	source/priv/init.o

LIB := libagbx.a

# TARGETS

.PHONY: clean purge

$(LIB): $(OBJS)
	$(AR) r $(@) $(^)

$(OBJS): $(HDRS)

clean:
	$(RM) $(OBJS)

purge: clean
	$(RM) $(LIB)