hi all:
There is a header file in my project like below

#define DEBUG_VERSION
//#undef DEBUG_VERSION

//#define RELEASE_VERSION
#undef REAL_CHIP_VERSION

#ifdef DEBUG_VERSION
#define FILE_NAME "DEBUG"
#endif

#ifdef RELEASE_VERSION
#define FILE_NAME "DEBUG"
#endif


is it possible the out file name created by Make will dynamically changed
by above FILE_NAME

-- 
Thanks for your help in advance,
_______________________________________________
Help-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-make

Reply via email to