-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
81 lines (66 loc) · 2.19 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
ifndef WASI_SDK_PATH
$(error Download the WASI SDK (https://github.com/WebAssembly/wasi-sdk) and set $$WASI_SDK_PATH)
endif
CC = "$(WASI_SDK_PATH)/bin/clang" --sysroot="$(WASI_SDK_PATH)/share/wasi-sysroot"
CXX = "$(WASI_SDK_PATH)/bin/clang++" --sysroot="$(WASI_SDK_PATH)/share/wasi-sysroot"
# Optional dependency from binaryen for smaller builds
WASM_OPT = wasm-opt
WASM_OPT_FLAGS = -Oz --zero-filled-memory --strip-producers
# Whether to build for debugging instead of release
DEBUG = 0
# Compilation flags
CFLAGS = -W -Wall -Wextra -Werror -Wno-unused -Wconversion -Wsign-conversion -MMD -MP -fno-exceptions
ifeq ($(DEBUG), 1)
CFLAGS += -DDEBUG -O0 -g
else
CFLAGS += -DNDEBUG -Oz -flto
endif
# Linker flags
LDFLAGS = -Wl,-zstack-size=8192,--no-entry,--import-memory -mexec-model=reactor \
-Wl,--initial-memory=262144,--max-memory=262144,--global-base=98304
ifeq ($(DEBUG), 1)
LDFLAGS += -Wl,--export-all,--no-gc-sections
else
LDFLAGS += -Wl,--strip-debug,--gc-sections,--lto-O3 -Oz
endif
OBJECTS = $(patsubst src/%.c, build/%.o, $(wildcard src/*.c))
OBJECTS += $(patsubst src/%.cpp, build/%.o, $(wildcard src/*.cpp))
DEPS = $(OBJECTS:.o=.d)
ifeq ($(OS), Windows_NT)
MKDIR_BUILD = if not exist build md build
RMDIR = rd /s /q
RM_DOOMFIRETIC = if exist doomfire.tic del doomfire.tic
else
MKDIR_BUILD = mkdir -p build
RMDIR = rm -rf
RM_DOOMFIRETIC = rm -f doomfire.tic
endif
all: build/cart.wasm
# Link cart.wasm from all object files and run wasm-opt
build/cart.wasm: $(OBJECTS)
$(CXX) -o $@ $(OBJECTS) $(LDFLAGS)
ifneq ($(DEBUG), 1)
ifeq (, $(shell command -v $(WASM_OPT)))
@echo Tip: $(WASM_OPT) was not found. Install it from binaryen for smaller builds!
else
$(WASM_OPT) $(WASM_OPT_FLAGS) $@ -o $@
endif
endif
doomfire.tic: build/cart.wasm doomfire.wasmp
@$(RM_DOOMFIRETIC)
tic80.exe --fs . --cmd 'load doomfire.wasmp & import binary build/cart.wasm & save doomfire.tic & exit'
# Compile C sources
build/%.o: src/%.c
@$(MKDIR_BUILD)
$(CC) -c $< -o $@ $(CFLAGS)
# Compile C++ sources
build/%.o: src/%.cpp
@$(MKDIR_BUILD)
$(CXX) -c $< -o $@ $(CFLAGS)
.PHONY: clean run
clean:
$(RMDIR) build
$(RM_DOOMFIRETIC)
run: doomfire.tic
tic80.exe --fs . --cmd 'load doomfire.tic & run & exit'
-include $(DEPS)