aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/USBtoSerial
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/Device/ClassDriver/USBtoSerial
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/Device/ClassDriver/USBtoSerial')
-rw-r--r--Demos/Device/ClassDriver/USBtoSerial/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/USBtoSerial/makefile b/Demos/Device/ClassDriver/USBtoSerial/makefile
index da62fa620..ede6d1e0c 100644
--- a/Demos/Device/ClassDriver/USBtoSerial/makefile
+++ b/Demos/Device/ClassDriver/USBtoSerial/makefile
@@ -506,11 +506,11 @@ $(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
-
+
showliboptions:
@echo
@echo ---- Compile Time Library Options ----