Cleaned up the definition of CONSOLE_USE_POLLED and CONSOLE_USE_INTERRUPTS.

This commit is contained in:
Joel Sherrill
1998-02-04 15:47:44 +00:00
parent 0312defbeb
commit e44e678b45

View File

@@ -73,15 +73,15 @@ START_BASE=startsis
#
define make-target-options
@echo "/* #define NDEBUG 1 */ " >>$@
@echo "#define RTEMS_TEST_NO_PAUSE 1" >>$@
@echo "/* #define STACK_CHECKER_ON 1 */" >>$@
@echo "/* #define STACK_CHECKER_REPORT_USAGE 1 */" >>$@
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
@echo "#define NO_TABLE_MOVE 1" >>$@
@echo "/* #define CONSOLE_USE_INTERRUPTS 1 */" >>$@
@echo "#define CONSOLE_USE_POLLED 1" >>$@
@echo "/* #define SIMSPARC_FAST_IDLE 1 */" >>$@
@echo "/* #define NDEBUG 1 */ " >>$@
@echo "#define RTEMS_TEST_NO_PAUSE 1" >>$@
@echo "/* #define STACK_CHECKER_ON 1 */" >>$@
@echo "/* #define STACK_CHECKER_REPORT_USAGE 1 */" >>$@
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
@echo "#define NO_TABLE_MOVE 1" >>$@
@echo "#define CONSOLE_USE_INTERRUPTS 1" >>$@
@echo "#define CONSOLE_USE_POLLED ~CONSOLE_USE_INTERRUPTS" >>$@
@echo "/* #define SIMSPARC_FAST_IDLE 1 */" >>$@
endef