Changeset 138 for trunk/Makefile.flags
- Timestamp:
- May 12, 2010, 7:34:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.flags
r137 r138 19 19 20 20 #-----[ Flags ]-------------------------------------------- 21 MORPHEO_FLAGS = -DSYSTEMC \ 22 -DVHDL \ 23 -DSTATISTICS 21 MORPHEO_TYPE ?= debug_systemc 24 22 25 # -DPRINT_COLOR \ 26 # -DDEBUG=DEBUG_NONE \ 27 # -DDEBUG_MEMORY_LEAK \ 28 # -DDEBUG_SIGNAL \ 29 # -DVHDL_TESTBENCH \ 30 # -DVHDL_TESTBENCH_ASSERT \ 31 # -DTRANSLATION \ 32 # -DPOSITION \ 23 MORPHEO_systemc_FLAGS = -DSYSTEMC \ 24 -DSTATISTICS \ 25 -DTRANSLATION 26 27 MORPHEO_vhdl_FLAGS = -DVHDL \ 28 -DTRANSLATION 29 30 MORPHEO_cosim_FLAGS = -DSYSTEMC \ 31 -DSTATISTICS \ 32 -DVHDL \ 33 -DTRANSLATION 34 35 MORPHEO_debug_FLAGS = -DSYSTEMC \ 36 -DDEBUG=DEBUG_FUNC \ 37 -DVHDL 38 39 MORPHEO_debug_systemc_FLAGS = -DSYSTEMC \ 40 -DSTATISTICS \ 41 -DDEBUG=DEBUG_FUNC 42 43 MORPHEO_FLAGS = $(MORPHEO_$(MORPHEO_TYPE)_FLAGS) 44 45 # | systemc | vhdl | cosim | debug | debug_systemc 46 #-----------------------+---------+------+-------+-------+--------------- 47 # TRANSLATION | X | X | X | | 48 # SYSTEMC | X | | X | X | X 49 # STATISTICS | X | | X | X | X 50 # VHDL | | X | X | X | 51 # VHDL_TESTBENCH | | | | | 52 # VHDL_TESTBENCH_ASSERT | | | | | 53 # DEBUG=DEBUG_NONE | | | | X | X 54 # DEBUG_MEMORY_LEAK | | | | | 55 # DEBUG_SIGNAL | | | | | 56 # POSITION | | | | | 57 # PRINT_COLOR | | | | | 33 58 34 59 # Flags : 35 # DEBUG={level} - Print Debug Message60 # TRANSLATION - Translate message 36 61 # SYSTEMC - To generate a systemc's model 62 # STATISTICS (need SYSTEMC) - In the simulation, generate a statistics's file 37 63 # VHDL - To generate a vhdl's models 38 64 # VHDL_TESTBENCH (need SYSTEMC) - In the simulation, generate two testbench's file (input and ouput) to validate the vhdl's model 39 65 # VHDL_TESTBENCH_ASSERT (need VHDL_TESTBENCH) - In the simulation, generate in testbench's file an serie of assert 66 # DEBUG={level} - Print Debug Message 67 # DEBUG_MEMORY_LEAK - 68 # DEBUG_SIGNAL - 40 69 # POSITION - To generate a position's files (it's input of viewer) 41 # STATISTICS (need SYSTEMC) - In the simulation, generate a statistics's file42 # TRANSLATION - Translate message43 70 # PRINT_COLOR - Print with colors
Note: See TracChangeset
for help on using the changeset viewer.