- improves the chances of tracking who built OpenFOAM, where, etc ENH: make it easier to parse version/build from OpenFOAM -help output - For example, foamListTimes -help | awk '{ if (/^Using:/) print $2}' foamListTimes -help | awk '{ if (/^Build:/) print $2}'
14 lines
323 B
Plaintext
14 lines
323 B
Plaintext
.SUFFIXES: .Cver
|
|
|
|
#
|
|
# update version strings in C++ file and in $WM_PROJECT_DIR/.build file
|
|
#
|
|
Cvertoo = \
|
|
sed -e 's!VERSION_STRING!$(shell wmakePrintBuild -major)!' \
|
|
-e 's!BUILD_STRING!$(shell wmakePrintBuild -update)!' \
|
|
$$SOURCE > $*.C; \
|
|
$(CC) $(c++FLAGS) -c $*.C -o $@
|
|
|
|
.Cver.dep:
|
|
$(MAKE_DEP)
|