diff options
author | Perry Hung <iperry@alum.mit.edu> | 2010-03-30 22:58:47 -0400 |
---|---|---|
committer | Perry Hung <iperry@alum.mit.edu> | 2010-03-30 22:58:47 -0400 |
commit | 1be7df0937bee5127103e7dc8800c83e47415f3d (patch) | |
tree | 358e29df049ec0d664174f4d2fd88056d50172f4 /Makefile | |
parent | 869ed39e4c28ebb9813a8b28192d4ca92f72bf22 (diff) | |
download | librambutan-1be7df0937bee5127103e7dc8800c83e47415f3d.tar.gz librambutan-1be7df0937bee5127103e7dc8800c83e47415f3d.zip |
Removed remaining STM32 types and #defines.
Updated usb subsystem to use libmaple types, removed STM32 peripheral
library from the Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -2,8 +2,6 @@ # Project name PROJECT=maple -# STM Library prefix -STM_SRC = stm32lib/src STM_CONF = stm32conf/flash.conf # ARM/GNU toolchain parameters @@ -28,14 +26,12 @@ endif BUILD_PATH = build LIB_PATH = libmaple -OUTDIRS = $(BUILD_PATH)/$(STM_SRC) \ - $(BUILD_PATH)/$(LIB_PATH)\ +OUTDIRS = $(BUILD_PATH)/$(LIB_PATH)\ $(BUILD_PATH)/core \ $(BUILD_PATH)/core/comm INCLUDES = -I$(LIB_PATH) \ - -Istm32lib/inc \ -I./ \ -Icore \ -Icore/comm |