aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-04-08 21:48:46 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-04-08 21:48:46 +0000
commitb2fe539d1c8fe011b9a2332d77221416913d3187 (patch)
tree7e6c8c51974de018cc3d14104e126eaf9d046121 /LUFA/makefile
parentf11826fc477426bfaecdeff03041c320e96ee9fc (diff)
downloadlufa-b2fe539d1c8fe011b9a2332d77221416913d3187.tar.gz
lufa-b2fe539d1c8fe011b9a2332d77221416913d3187.tar.bz2
lufa-b2fe539d1c8fe011b9a2332d77221416913d3187.zip
Removed the old pseudo-scheduler from the library as it was unused and deprecated since the 090810 release.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index c6366cfb3..f2e834c02 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -55,7 +55,6 @@ LUFA_SRC_USBCLASS = $(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/AudioClassDev
LUFA_SRC_TEMPERATURE = $(LUFA_ROOT_PATH)/Drivers/Board/Temperature.c
LUFA_SRC_SERIAL = $(LUFA_ROOT_PATH)/Drivers/Peripheral/$(ARCH)/Serial_$(ARCH).c
LUFA_SRC_TWI = $(LUFA_ROOT_PATH)/Drivers/Peripheral/$(ARCH)/TWI_$(ARCH).c
-LUFA_SRC_SCHEDULER = $(LUFA_ROOT_PATH)/Scheduler/Scheduler.c
# Check to see if the LUFA_PATH variable has not been set (the makefile is not being included from a project makefile)
@@ -66,8 +65,7 @@ ifeq ($(origin LUFA_PATH), undefined)
$(LUFA_SRC_USBCLASS) \
$(LUFA_SRC_TEMPERATURE) \
$(LUFA_SRC_SERIAL) \
- $(LUFA_SRC_TWI) \
- $(LUFA_SRC_SCHEDULER)
+ $(LUFA_SRC_TWI)
all: