I want to use the `include directive to call upon a non-specific file name. For example, there is this file name "name_defines.svh" in some other directory. Since the "name" of "name_defines.svh" changes(it can be eg, a_defines.svh, b_defines.svh.. etc), is it possible if I just use
`include "_defines.svh"
or
`include "*_defines.svh"
so that the system verilog compiler finds the file name and include it in my current .sv file, just as if I used
`include "name_defines.svh"
p.s. - assume that no other files in the working directory has the trailing "_defines.svh" wordings and is unique to only "name_defines.svh"