diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-04 08:03:37 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-04 08:03:37 +0100 |
commit | 7a0173db5f0acf0848ccc0589f64f08f44782337 (patch) | |
tree | fe6cbea16d9fef97b3af6e1d6db6f6b20c61a07a /src/arch/posix | |
parent | 266f97c83e6491acb18acf6d10dd018b4713642c (diff) |
add monitor info to help output
Diffstat (limited to 'src/arch/posix')
-rw-r--r-- | src/arch/posix/Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/posix/Makefile.inc b/src/arch/posix/Makefile.inc index 619b385..1300012 100644 --- a/src/arch/posix/Makefile.inc +++ b/src/arch/posix/Makefile.inc @@ -12,6 +12,10 @@ endif CXX_TARGETS += src/arch/posix/arch.cc src/arch/posix/driver/gpio.cc CXX_TARGETS += src/arch/posix/driver/stdout.cc src/arch/posix/driver/uptime.cc +ifneq ($(findstring counter,${arch_drivers}), ) + CXX_TARGETS += src/arch/posix/driver/counter.cc +endif + OBJECTS = ${CXX_TARGETS:.cc=.o} ${C_TARGETS:.c=.o} ifneq (${gpio_trace}, ) @@ -43,5 +47,6 @@ arch_help: @echo " - none -" arch_info: + @echo "Monitor: run build/system.elf" .PHONY: arch_clean arch_help arch_info monitor program run |