From 3c4f5ababa4c257d50f4c3e845cc629b98c46256 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Wed, 24 Apr 2024 20:14:35 +0200 Subject: [PATCH] rename make preprocess to make pp thanks for the suggestion krizej --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7611475..6ff16c5 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ _PP_CXX = osuparser.cpp _PP = $(_PP_HXX) $(_PP_CXX) PP = $(addprefix $(PREPROCESSED)/, $(_PP)) -preprocess: dirs $(PP) +pp: dirs $(PP) $(PREPROCESSED)/%.hpp: $(INCLUDE)/%.hpp $(CXX) $(CXXFLAGS) -E $< > $@