diff options
author | snermolaev <snermolaev@yandex-team.com> | 2024-02-20 09:39:04 +0300 |
---|---|---|
committer | snermolaev <snermolaev@yandex-team.com> | 2024-02-20 09:52:23 +0300 |
commit | 6fbba255e0e94ab0aa2ad9e61ac24d3623f455b9 (patch) | |
tree | 3eaae6a21da198e6351f82229efee77c23e0282e | |
parent | 26400864892d0b8e46caa9a3f8c68f21a98767f2 (diff) | |
download | ydb-6fbba255e0e94ab0aa2ad9e61ac24d3623f455b9.tar.gz |
Move empty macro definition for generic _SRC
7fa177d028e57853c2a3fb87ccbb50d30b0be280
-rw-r--r-- | build/ymake.core.conf | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index fc82936f894..5ed9d9f6386 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -45,6 +45,17 @@ FALSE=no MODULE_PREFIX= MODULE_SUFFIX= +# tag:src-processing tag:internal +### @usage: _SRC(Ext Src Flags) # internal +### +### Basic building block of extension-based command dispatching +### To enable specific extension processing define _SRC() macro with fixed first argument (Ext). +### Internal logic will apply this macro to all files with this Ext listed in SRC/SRCS macros or outputs +### of other commands (except ones marked as noauto) +macro _SRC(EXT, SRC, SRCFLAGS...) { + # Generic macro definition for _SRC (just a placeholder, it does nothing) +} + CLANG_VER=14 when ($CLANG16 == "yes") { CLANG_VER=16 @@ -2934,17 +2945,6 @@ macro _ADD_EXTRA_FLAGS(COMPILE_OUT_SUFFIX="", Args...) { _EMPTY_CMD= -# tag:src-processing tag:internal -### @usage: _SRC(Ext Src Flags) # internal -### -### Basic building block of extension-based command dispatching -### To enable specific extension processing define _SRC() macro with fixed first argument (Ext). -### Internal logic will apply this macro to all files with this Ext listed in SRC/SRCS macros or outputs -### of other commands (except ones marked as noauto) -macro _SRC(EXT, SRC, SRCFLAGS...) { - # Generic macro definition for _SRC (just a placeholder, it does nothing) -} - # tag:src-processing macro _SRC("swg", SRC, SRCFLAGS...) { .CMD=${_SWIG_CMD} |