aboutsummaryrefslogtreecommitdiff
path: root/stmhal/Makefile
diff options
context:
space:
mode:
authorDave Hylands2014-03-13 14:40:49 -0700
committerDave Hylands2014-03-13 14:40:49 -0700
commitef39f2d9cac6fc50b1bbae9d16da371649dfa6e2 (patch)
treecb47404ccb7f10656e60955940924159d9057d99 /stmhal/Makefile
parent659c19c67c00b156cb6890f926d5cc012d129f24 (diff)
Cleanup systick for stmhal
Diffstat (limited to 'stmhal/Makefile')
-rw-r--r--stmhal/Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/stmhal/Makefile b/stmhal/Makefile
index f53887b74..5ec772808 100644
--- a/stmhal/Makefile
+++ b/stmhal/Makefile
@@ -19,7 +19,6 @@ CROSS_COMPILE = arm-none-eabi-
INC = -I.
INC += -I$(PY_SRC)
-INC += -I$(CMSIS_DIR)
INC += -I$(CMSIS_DIR)/inc
INC += -I$(CMSIS_DIR)/devinc
INC += -I$(HAL_DIR)/inc
@@ -32,7 +31,6 @@ INC += -I$(HAL_DIR)/inc
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion
CFLAGS = $(INC) -Wall -Werror -ansi -std=gnu99 $(CFLAGS_CORTEX_M4) $(COPT)
-BOARD = STM32F4DISC
BOARD ?= PYBOARD4
ifeq ($(wildcard boards/$(BOARD)/.),)
$(error Invalid BOARD specified)
@@ -226,11 +224,6 @@ GEN_PINS_HDR = $(BUILD)/pins.h
# which source files might need it.
$(OBJ): | $(BUILD)/pins.h
-# temp hack
-$(PY_BUILD):
- mkdir -p $@
-$(OBJ): | $(PY_BUILD) $(PY_BUILD)/qstrdefs.generated.h
-
# Use a pattern rule here so that make will only call make-pins.py once to make
# both pins_$(BOARD).c and pins.h
$(BUILD)/%_$(BOARD).c $(BUILD)/%.h: boards/$(BOARD)/%.csv $(MAKE_PINS) $(AF_FILE) $(PREFIX_FILE)