Disable strict aliasing explicitly in the project makefiles, as this is apparently...
[pub/USBasp.git] / LUFA / makefile
index 3d21db3..157f2e7 100644 (file)
@@ -9,6 +9,7 @@
 # Makefile for the LUFA library itself.
 
 LUFA_SRC_FILES =     ./Drivers/USB/LowLevel/DevChapter9.c        \
+                     ./Drivers/USB/LowLevel/Device.c             \
                      ./Drivers/USB/LowLevel/Endpoint.c           \
                      ./Drivers/USB/LowLevel/Host.c               \
                      ./Drivers/USB/LowLevel/HostChapter9.c       \
@@ -36,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: