Changeset 142 for trunk/IPs/systemC/processor/Morpheo/Common
- Timestamp:
- Aug 4, 2010, 10:09:03 PM (14 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Common/Makefile.deps
r113 r142 8 8 # DIR_MORPHEO must be defined 9 9 10 Common = yes10 Common = yes 11 11 12 12 #-----[ Directory ]---------------------------------------- 13 13 14 Common_DIR = $(DIR_MORPHEO)/Common14 Common_DIR = $(DIR_MORPHEO)/Common 15 15 16 16 #-----[ Library ]------------------------------------------ 17 17 18 Common_SOURCES 18 Common_SOURCES = $(Common_DIR)/src/*.cpp 19 19 20 Common_LIBRARY = -lCommon20 Common_LIBRARY = -lCommon 21 21 22 Common_DIR_LIBRARY = -L$(Common_DIR)/lib22 Common_DIR_LIBRARY = -L$(Common_DIR)/lib 23 23 24 24 #-----[ Rules ]-------------------------------------------- 25 25 26 Common_library :27 @\28 $(MAKE) --directory=$(Common_DIR) --makefile=Makefile26 Common_library_only : 27 @\ 28 $(MAKE) --directory=$(Common_DIR) --makefile=Makefile 29 29 30 Common_library_clean : 31 @\ 32 $(MAKE) --directory=$(Common_DIR) --makefile=Makefile clean 30 Common_library_clean_only : 31 @\ 32 $(MAKE) --directory=$(Common_DIR) --makefile=Makefile clean 33 34 Common_library : Common_library_only 35 36 Common_library_clean : Common_library_clean_only -
trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h
r138 r142 73 73 #define debug_test_simulation_time true 74 74 #endif 75 76 /* 77 # define log_test(level, component) \ 78 do \ 79 { \ 80 debug_init(); \ 81 \ 82 msgInformation("debug_test_simuation_time : %d",debug_test_simulation_time); \ 83 msgInformation("level : %d",( DEBUG_ ## level <= debug)); \ 84 msgInformation("component : %d", morpheo::behavioural::_model.get_debug(NAME_ ## component)); \ 85 } while(0) 86 */ 75 87 76 88 #ifdef DEBUG
Note: See TracChangeset
for help on using the changeset viewer.