openfoam/wmake/rules/General/version
Mark Olesen 3b0af86448 STYLE: add notes where files are added into global/globals.C
ENH: use dictionary findDict() directly for debugSwitches

- the isDict() method is just a wrapper around the pointer anyhow
2022-11-17 15:26:51 +01:00

12 lines
426 B
Plaintext

#----------------------------*- makefile-gmake -*------------------------------
SUFFIXES += .Cver
# Update strings in C++ file and in META-INFO files
# place intermediate generated file into the build directory
Cvertoo = \
$(WM_SCRIPTS)/wmake-build-info -update -filter $< > $(@D)/$(<F).cc; \
$(CC) $(c++FLAGS) -c $(@D)/$(<F).cc -o $@
#------------------------------------------------------------------------------