summaryrefslogtreecommitdiff
path: root/digital/avr/modules
diff options
context:
space:
mode:
authorNélio Laranjeiro2010-04-14 22:07:53 +0200
committerNélio Laranjeiro2010-04-14 22:07:53 +0200
commitde2b91b06e7a037775a58dbda036a3c8d1de00e3 (patch)
tree6256241b4dff481405645fb2e63d0c6de1ea4074 /digital/avr/modules
parent442a4e4da3699c6ea6390512bf67276c30a9e4ba (diff)
digital/avr/modules/trace: remove the event.host.c from module
The user should add the c file into the list of sources to compile.
Diffstat (limited to 'digital/avr/modules')
-rw-r--r--digital/avr/modules/trace/Makefile.module2
-rw-r--r--digital/avr/modules/trace/test/Makefile6
2 files changed, 4 insertions, 4 deletions
diff --git a/digital/avr/modules/trace/Makefile.module b/digital/avr/modules/trace/Makefile.module
index 2465f835..e5fcdfc2 100644
--- a/digital/avr/modules/trace/Makefile.module
+++ b/digital/avr/modules/trace/Makefile.module
@@ -1 +1 @@
-trace_SOURCES=trace.c events.host.c
+trace_SOURCES=trace.c
diff --git a/digital/avr/modules/trace/test/Makefile b/digital/avr/modules/trace/test/Makefile
index dec8b36b..89dbbf51 100644
--- a/digital/avr/modules/trace/test/Makefile
+++ b/digital/avr/modules/trace/test/Makefile
@@ -2,9 +2,10 @@ BASE = ../../..
TOOLS= $(BASE)/../../tools
AVR_PROGS = test_trace flood
HOST_PROGS = test_trace flood
+EXTRA_CLEAN_FILES=../events.h events.host.c
-test_trace_SOURCES = test-trace.c
-flood_SOURCES = flood.c
+test_trace_SOURCES = test-trace.c events.host.c
+flood_SOURCES = flood.c events.host.c
MODULES = utils spi flash proto uart trace
CONFIGFILE = avrconfig.h
@@ -17,6 +18,5 @@ OPTIMIZE = -O2
events:
python $(TOOLS)/trace/trace.py -i $(TOOLS)/trace/example/trace.trc -t create -o
mv events.h ..
- mv events.host.c ..
include $(BASE)/make/Makefile.gen