aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index f77b1c432..157f2e7d3 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -37,18 +37,10 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \
./Drivers/Peripheral/TWI.c \
./Scheduler/Scheduler.c \
-LUFA_Events.lst:
- @echo
- @echo Generating LUFA event name list...
- @$(shell) cat `find ./ -name "*.h"` | grep -E "EVENT_[^\(]*\(" | \
- sed -n -e 's/^.*EVENT_/EVENT_/p' | \
- cut -d'(' -f1 | sort | uniq | tee LUFA_Events.lst
-
-all: LUFA_Events.lst
+all:
clean:
rm -f $(LUFA_SRC_FILES:%.c=%.o)
- rm -f LUFA_Events.lst
clean_list: