ENH: use dictionary findDict() directly for debugSwitches - the isDict() method is just a wrapper around the pointer anyhow
12 lines
426 B
Plaintext
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 $@
|
|
|
|
#------------------------------------------------------------------------------
|