mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
5c147e5e03
* copy over the xml * Rename anims * A bunch of renames * minor extract_assets fixes * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "820678b4e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "820678b4e" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change rgb5a1 to rgba16 * eye and eyebrows * some dlists * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "6be9af65d" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "6be9af65d" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
78 lines
1.8 KiB
Makefile
78 lines
1.8 KiB
Makefile
OPTIMIZATION_ON ?= 1
|
|
ASAN ?= 0
|
|
DEPRECATION_ON ?= 1
|
|
DEBUG ?= 0
|
|
CXXFLAGS ?=
|
|
COPYCHECK_ARGS ?=
|
|
|
|
CXX := g++
|
|
INC := -I ZAPD -I lib/assimp/include -I lib/elfio -I lib/json/include -I lib/stb -I lib/tinygltf -I lib/libgfxd -I lib/tinyxml2
|
|
CXXFLAGS += -fpic -std=c++17 -Wall -fno-omit-frame-pointer
|
|
|
|
ifneq ($(DEBUG),0)
|
|
OPTIMIZATION_ON = 0
|
|
DEPRECATION_OFF = 1
|
|
CXXFLAGS += -g3 -DDEVELOPMENT
|
|
COPYCHECK_ARGS += --devel
|
|
DEPRECATION_ON = 0
|
|
endif
|
|
|
|
ifeq ($(OPTIMIZATION_ON),0)
|
|
CXXFLAGS += -O0
|
|
else
|
|
CXXFLAGS += -O2 -march=native -mtune=native
|
|
endif
|
|
|
|
ifneq ($(ASAN),0)
|
|
CXXFLAGS += -fsanitize=address
|
|
endif
|
|
ifneq ($(DEPRECATION_ON),0)
|
|
CXXFLAGS += -DDEPRECATION_ON
|
|
endif
|
|
# CXXFLAGS += -DTEXTURE_DEBUG
|
|
|
|
LDFLAGS := -lstdc++ -lm -ldl -lpng
|
|
|
|
UNAME := $(shell uname)
|
|
ifneq ($(UNAME), Darwin)
|
|
LDFLAGS += -Wl,-export-dynamic -lstdc++fs
|
|
endif
|
|
|
|
SRC_DIRS := ZAPD ZAPD/ZRoom ZAPD/ZRoom/Commands ZAPD/Overlays ZAPD/HighLevel
|
|
|
|
ZAPD_CPP_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.cpp))
|
|
ZAPD_H_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.h))
|
|
|
|
CPP_FILES += $(ZAPD_CPP_FILES) lib/tinyxml2/tinyxml2.cpp
|
|
O_FILES := $(CPP_FILES:.cpp=.o)
|
|
|
|
all: ZAPD.out copycheck
|
|
|
|
genbuildinfo:
|
|
python3 ZAPD/genbuildinfo.py $(COPYCHECK_ARGS)
|
|
|
|
copycheck: ZAPD.out
|
|
python3 copycheck.py
|
|
|
|
clean:
|
|
rm -f $(O_FILES) ZAPD.out
|
|
$(MAKE) -C lib/libgfxd clean
|
|
|
|
rebuild: clean all
|
|
|
|
format:
|
|
clang-format-11 -i $(ZAPD_CPP_FILES) $(ZAPD_H_FILES)
|
|
|
|
.PHONY: all genbuildinfo copycheck clean rebuild format
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CXXFLAGS) $(INC) -c $< -o $@
|
|
|
|
ZAPD/Main.o: genbuildinfo ZAPD/Main.cpp
|
|
$(CXX) $(CXXFLAGS) $(INC) -c ZAPD/Main.cpp -o $@
|
|
|
|
lib/libgfxd/libgfxd.a:
|
|
$(MAKE) -C lib/libgfxd
|
|
|
|
ZAPD.out: $(O_FILES) lib/libgfxd/libgfxd.a
|
|
$(CXX) $(CXXFLAGS) $(INC) $(O_FILES) lib/libgfxd/libgfxd.a -o $@ $(FS_INC) $(LDFLAGS)
|