aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/stm32f2/rules.mk
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2012-03-26 19:34:04 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2012-04-11 16:56:55 -0400
commit6dd3c2e202e46c843e00498f5d9a675cfa83522d (patch)
tree5bdba9d1f6f4af230c763ff36bfc61aef4988aae /libmaple/stm32f2/rules.mk
parentb70544a1fd713db6c9fb2cef773da2029cdc8c70 (diff)
downloadlibrambutan-6dd3c2e202e46c843e00498f5d9a675cfa83522d.tar.gz
librambutan-6dd3c2e202e46c843e00498f5d9a675cfa83522d.zip
Clean up rules.mk files.
Alphabetize targets and remove continuation lines. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple/stm32f2/rules.mk')
-rw-r--r--libmaple/stm32f2/rules.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/libmaple/stm32f2/rules.mk b/libmaple/stm32f2/rules.mk
index 8711090..a46f8d1 100644
--- a/libmaple/stm32f2/rules.mk
+++ b/libmaple/stm32f2/rules.mk
@@ -8,11 +8,12 @@ BUILDDIRS += $(BUILD_PATH)/$(d)
CFLAGS_$(d) = -I$(d) $(LIBMAPLE_INCLUDES) $(LIBMAPLE_PRIVATE_INCLUDES) -Wall -Werror
# Local rules and targets
-sSRCS_$(d) := isrs.S vector_table.S
+sSRCS_$(d) := isrs.S
+sSRCS_$(d) += vector_table.S
-cSRCS_$(d) := rcc.c
cSRCS_$(d) += fsmc.c
cSRCS_$(d) += gpio.c
+cSRCS_$(d) += rcc.c
cSRCS_$(d) += usart.c
sFILES_$(d) := $(sSRCS_$(d):%=$(d)/%)