projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eee712f
)
Fix LUFA event list generation rule in the main LUFA makefile (thanks to Thomas Bleeker).
author
Dean Camera
<dean@fourwalledcubicle.com>
Mon, 14 Sep 2009 06:01:32 +0000
(06:01 +0000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Mon, 14 Sep 2009 06:01:32 +0000
(06:01 +0000)
LUFA/makefile
patch
|
blob
|
blame
|
history
diff --git
a/LUFA/makefile
b/LUFA/makefile
index
147aaaa
..
4e9b8ca
100644
(file)
--- a/
LUFA/makefile
+++ b/
LUFA/makefile
@@
-36,7
+36,7
@@
LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \
LUFA_Events.lst:
\r
@echo
\r
@echo Generating LUFA event name list...
\r
- @$(shell) cat `find ./ -name "*.h"` |
egrep
"EVENT_[^\(]*\(" | \
\r
+ @$(shell) cat `find ./ -name "*.h"` |
grep -E
"EVENT_[^\(]*\(" | \
\r
sed -n -e 's/^.*EVENT_/EVENT_/p' | \
\r
cut -d'(' -f1 | sort | uniq > LUFA_Events.lst
\r
\r