2021-01-02 04:24:29 +00:00
|
|
|
CC := g++
|
|
|
|
|
|
|
|
ifneq (, $(shell which ccache))
|
|
|
|
CC := ccache $(CC)
|
|
|
|
endif
|
|
|
|
|
2021-01-09 00:38:28 +00:00
|
|
|
CFLAGS := -g -std=c++17 -I ZAPD -I lib/assimp/include -I lib/elfio -I lib/json/include -I lib/stb -I lib/tinygltf -I lib/tinyxml2 -O2 -rdynamic
|
|
|
|
|
|
|
|
UNAME := $(shell uname)
|
|
|
|
|
|
|
|
FS_INC =
|
|
|
|
ifneq ($(UNAME), Darwin)
|
|
|
|
FS_INC += -lstdc++fs
|
|
|
|
endif
|
2021-01-02 04:24:29 +00:00
|
|
|
|
|
|
|
SRC_DIRS := ZAPD ZAPD/ZRoom ZAPD/ZRoom/Commands ZAPD/Overlays ZAPD/HighLevel ZAPD/OpenFBX
|
|
|
|
|
|
|
|
CPP_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.cpp))
|
2021-01-09 00:38:28 +00:00
|
|
|
CPP_FILES += lib/tinyxml2/tinyxml2.cpp
|
2021-01-02 04:24:29 +00:00
|
|
|
O_FILES := $(CPP_FILES:.cpp=.o)
|
|
|
|
|
|
|
|
all: ZAPD.out
|
|
|
|
|
2021-01-09 00:38:28 +00:00
|
|
|
clean:
|
2021-01-02 04:24:29 +00:00
|
|
|
rm -f $(O_FILES) ZAPD.out
|
|
|
|
|
|
|
|
rebuild: clean all
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
ZAPD.out: $(O_FILES)
|
2021-01-09 00:38:28 +00:00
|
|
|
$(CC) $(CFLAGS) $(O_FILES) -o $@ $(FS_INC)
|