aboutsummaryrefslogtreecommitdiff
path: root/Demos/Host/ClassDriver/MouseHostWithParser/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-10-16 08:04:51 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-10-16 08:04:51 +0000
commitf9f8f39ae8f1b192dc5648a8a0a3c6d35c2b8e2f (patch)
treed6bdb4cbca65164158f956dbac2a9469a74b2be7 /Demos/Host/ClassDriver/MouseHostWithParser/makefile
parent0371373754ac5a2b86d35254cef1327b6c939d19 (diff)
Fix invalid Event name rule in demo/project makefiles.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@867 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/ClassDriver/MouseHostWithParser/makefile')
-rw-r--r--Demos/Host/ClassDriver/MouseHostWithParser/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/makefile b/Demos/Host/ClassDriver/MouseHostWithParser/makefile
index 0c896d97..a579a2a7 100644
--- a/Demos/Host/ClassDriver/MouseHostWithParser/makefile
+++ b/Demos/Host/ClassDriver/MouseHostWithParser/makefile
@@ -504,7 +504,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