2024-03-18 11:25:15 +01:00
|
|
|
CXX = g++
|
|
|
|
CXXFLAGS = -std=c++20 -O3 -Wall -Wextra -Wpedantic
|
|
|
|
LDFLAGS = -lsfml-graphics -lsfml-window -lsfml-system
|
|
|
|
|
|
|
|
NAME = osu++
|
|
|
|
|
2024-04-24 19:30:34 +02:00
|
|
|
INCLUDE = include
|
|
|
|
CXXFLAGS += -I$(INCLUDE)
|
|
|
|
|
2024-03-18 11:25:15 +01:00
|
|
|
SRC = src
|
|
|
|
BIN = target
|
2024-04-24 19:30:34 +02:00
|
|
|
PREPROCESSED = preprocessed
|
2024-03-18 11:25:15 +01:00
|
|
|
|
|
|
|
_PROG = HitObjectDrawable.cpp main.cpp osuparser.cpp TextureManager.cpp
|
|
|
|
PROG = $(addprefix $(SRC)/, $(_PROG))
|
|
|
|
|
|
|
|
OBJ = $(_PROG:.cpp=.o)
|
|
|
|
|
|
|
|
.PHONY: all clean
|
|
|
|
|
|
|
|
all: dirs $(NAME)
|
|
|
|
|
|
|
|
dirs:
|
|
|
|
mkdir -p $(BIN)
|
2024-04-24 19:30:34 +02:00
|
|
|
mkdir -p $(PREPROCESSED)
|
2024-03-18 11:25:15 +01:00
|
|
|
|
|
|
|
$(NAME): $(OBJ)
|
|
|
|
$(CXX) $(addprefix $(BIN)/, $^) $(LDFLAGS) -o $(BIN)/$@
|
|
|
|
|
2024-04-24 19:53:08 +02:00
|
|
|
%.o: $(SRC)/%.cpp
|
2024-03-18 11:25:15 +01:00
|
|
|
$(CXX) -c $< $(CXXFLAGS) -o $(BIN)/$@
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf $(addprefix $(BIN)/, $(OBJ))
|
|
|
|
rm -rf $(BIN)/$(NAME)
|
2024-04-24 19:30:34 +02:00
|
|
|
rm -rf $(BIN)
|
|
|
|
rm -rf $(PREPROCESSED)
|
|
|
|
|
2024-04-24 20:03:18 +02:00
|
|
|
_PP_HXX = osuparser.hpp config.hpp
|
|
|
|
_PP_CXX = osuparser.cpp
|
|
|
|
_PP = $(_PP_HXX) $(_PP_CXX)
|
|
|
|
PP = $(addprefix $(PREPROCESSED)/, $(_PP))
|
|
|
|
|
2024-04-24 23:36:25 +02:00
|
|
|
# the awks below will remove all includes, pragmas and blank lines from the top of the file
|
|
|
|
# until they hit something else
|
|
|
|
#
|
2024-04-24 23:41:45 +02:00
|
|
|
# that something else could be an awk marker comment which saves part of the includes
|
|
|
|
# from being eaten by awk - ones useful when debugging the output of these godforsaken macros
|
|
|
|
#
|
2024-04-24 23:36:25 +02:00
|
|
|
# doing that makes clang-format considerably faster (c++ std moment)
|
|
|
|
# but also removes my own headers which makes some of the macros not evaluate
|
|
|
|
#
|
|
|
|
# that issue is fixed by adding a comment that'll stop the awk before my macros
|
|
|
|
# and after all the others
|
2024-04-24 20:14:35 +02:00
|
|
|
pp: dirs $(PP)
|
2024-04-24 20:03:18 +02:00
|
|
|
|
|
|
|
$(PREPROCESSED)/%.hpp: $(INCLUDE)/%.hpp
|
2024-04-24 23:25:15 +02:00
|
|
|
$(eval TMP := $(shell mktemp).hpp)
|
2024-04-24 23:36:25 +02:00
|
|
|
awk '/^#include/ || /^#pragma/ || /^[[:space:]]*$$/ {if(!f)next} // {f=1;print}' $< > $(TMP)
|
2024-04-24 23:25:15 +02:00
|
|
|
$(CXX) $(CXXFLAGS) -E $(TMP) > $@
|
2024-04-24 20:09:04 +02:00
|
|
|
clang-format -i $@
|
2024-04-24 23:25:15 +02:00
|
|
|
rm -rf $(TMP)
|
2024-04-24 20:03:18 +02:00
|
|
|
|
|
|
|
$(PREPROCESSED)/%.cpp: $(SRC)/%.cpp
|
2024-04-24 23:25:15 +02:00
|
|
|
$(eval TMP := $(shell mktemp).cpp)
|
2024-04-24 23:36:25 +02:00
|
|
|
awk '/^#include/ || /^#pragma/ || /^[[:space:]]*$$/ {if(!f)next} // {f=1;print}' $< > $(TMP)
|
2024-04-24 23:25:15 +02:00
|
|
|
$(CXX) $(CXXFLAGS) -E $(TMP) > $@
|
2024-04-24 20:09:04 +02:00
|
|
|
clang-format -i $@
|
2024-04-24 23:25:15 +02:00
|
|
|
rm -rf $(TMP)
|