aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/MIDIHost/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-10-16 08:04:51 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-10-16 08:04:51 +0000
commitc3dfc58707eafb6ed0efab5a50770294f5a6b3d3 (patch)
treed6bdb4cbca65164158f956dbac2a9469a74b2be7 /Demos/Host/LowLevel/MIDIHost/makefile
parente53c120a2240549d42d98be92f25d6e92caeab0a (diff)
downloadlufa-c3dfc58707eafb6ed0efab5a50770294f5a6b3d3.tar.gz
lufa-c3dfc58707eafb6ed0efab5a50770294f5a6b3d3.tar.bz2
lufa-c3dfc58707eafb6ed0efab5a50770294f5a6b3d3.zip
Fix invalid Event name rule in demo/project makefiles.
Diffstat (limited to 'Demos/Host/LowLevel/MIDIHost/makefile')
-rw-r--r--Demos/Host/LowLevel/MIDIHost/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/LowLevel/MIDIHost/makefile b/Demos/Host/LowLevel/MIDIHost/makefile
index f40779673..1050de596 100644
--- a/Demos/Host/LowLevel/MIDIHost/makefile
+++ b/Demos/Host/LowLevel/MIDIHost/makefile
@@ -503,7 +503,7 @@ $(LUFA_PATH)/LUFA/LUFA_Events.lst:
checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst
@echo
@echo Checking for invalid events...
- @$(shell) avr-nm $(TARGET).elf | sed -n -e 's/^.*EVENT_/EVENT_/p' | \
+ @$(shell) avr-nm $(OBJ) | sed -n -e 's/^.*EVENT_/EVENT_/p' | \
grep -F -v --file=$(LUFA_PATH)/LUFA/LUFA_Events.lst > InvalidEvents.tmp || true
@sed -n -e 's/^/ WARNING - INVALID EVENT NAME: /p' InvalidEvents.tmp
@if test -s InvalidEvents.tmp; then exit 1; fi