aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-15 16:45:26 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-15 16:45:26 +0000
commitf4710f6f8653219b432f3a843ce117d4f4c136fd (patch)
treec344d4bed57017544229bfce9e195d1e5de2394c /LUFA/makefile
parentdfe50ff34970eda173cafbb3d636a5f7bedc87bd (diff)
downloadlufa-f4710f6f8653219b432f3a843ce117d4f4c136fd.tar.gz
lufa-f4710f6f8653219b432f3a843ce117d4f4c136fd.tar.bz2
lufa-f4710f6f8653219b432f3a843ce117d4f4c136fd.zip
Removed the automated checking of event names in the demo, project and bootloader makefiles due to inconsistancies between the behaviour of the command line tools used to perform the check on each platform.
Removed the internal endpoint and pipe memory allocation macros, as this is already performed directly in the code. Simplify the endpoint and pipe reset procedure.
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: