Skip to content
Snippets Groups Projects
Commit eaa914a4 authored by Dean Camera's avatar Dean Camera
Browse files

Fix LUFA event list generation rule in the main LUFA makefile (thanks to Thomas Bleeker).

parent eee712f7
Branches
Tags
No related merge requests found
......@@ -36,7 +36,7 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \
LUFA_Events.lst:
@echo
@echo Generating LUFA event name list...
@$(shell) cat `find ./ -name "*.h"` | egrep "EVENT_[^\(]*\(" | \
@$(shell) cat `find ./ -name "*.h"` | grep -E "EVENT_[^\(]*\(" | \
sed -n -e 's/^.*EVENT_/EVENT_/p' | \
cut -d'(' -f1 | sort | uniq > LUFA_Events.lst
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment