improve the makefile awk comment

This commit is contained in:
jacekpoz 2024-04-24 23:41:45 +02:00
parent c967207520
commit ff597fdc23
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -44,6 +44,9 @@ PP = $(addprefix $(PREPROCESSED)/, $(_PP))
# the awks below will remove all includes, pragmas and blank lines from the top of the file # the awks below will remove all includes, pragmas and blank lines from the top of the file
# until they hit something else # until they hit something else
# #
# 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
#
# doing that makes clang-format considerably faster (c++ std moment) # doing that makes clang-format considerably faster (c++ std moment)
# but also removes my own headers which makes some of the macros not evaluate # but also removes my own headers which makes some of the macros not evaluate
# #