mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
4e55168eaa
* git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "094e79734" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "094e79734" git-subrepo: version: "0.4.6" origin: "https://github.com/ingydotnet/git-subrepo" commit: "110b9eb" * Add EnumData.xml where some names are now externalized * Remove legacy typedefs for zapd, no longer needed!
28 lines
716 B
Makefile
28 lines
716 B
Makefile
# Only used for standalone compilation, usually inherits these from the main makefile
|
|
CXXFLAGS ?= -Wall -Wextra -O2 -g -std=c++17
|
|
|
|
SRC_DIRS := $(shell find . -type d -not -path "*build*")
|
|
CPP_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.cpp))
|
|
H_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.h))
|
|
|
|
O_FILES := $(foreach f,$(CPP_FILES:.cpp=.o),build/$f)
|
|
LIB := ZAPDUtils.a
|
|
|
|
# create build directories
|
|
$(shell mkdir -p $(foreach dir,$(SRC_DIRS),build/$(dir)))
|
|
|
|
all: $(LIB)
|
|
|
|
clean:
|
|
rm -rf build $(LIB)
|
|
|
|
format:
|
|
clang-format-14 -i $(CPP_FILES) $(H_FILES)
|
|
|
|
.PHONY: all clean format
|
|
|
|
build/%.o: %.cpp
|
|
$(CXX) $(CXXFLAGS) $(OPTFLAGS) -c $(OUTPUT_OPTION) $<
|
|
|
|
$(LIB): $(O_FILES)
|
|
$(AR) rcs $@ $^
|