aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/stm32f1
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/stm32f1
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/stm32f1')
-rw-r--r--libmaple/stm32f1/rules.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmaple/stm32f1/rules.mk b/libmaple/stm32f1/rules.mk
index b961d77..bdff00e 100644
--- a/libmaple/stm32f1/rules.mk
+++ b/libmaple/stm32f1/rules.mk
@@ -8,13 +8,13 @@ BUILDDIRS += $(BUILD_PATH)/$(d)
CFLAGS_$(d) = -I$(d) $(LIBMAPLE_PRIVATE_INCLUDES) $(LIBMAPLE_INCLUDES) -Wall -Werror
# Local rules and targets
-sSRCS_$(d) := isrs_performance.S \
- vector_table_performance.S
+sSRCS_$(d) := isrs_performance.S
+sSRCS_$(d) += vector_table_performance.S
-cSRCS_$(d) := rcc.c
+cSRCS_$(d) := bkp.c
cSRCS_$(d) += fsmc.c
cSRCS_$(d) += gpio.c
-cSRCS_$(d) += bkp.c
+cSRCS_$(d) += rcc.c
cSRCS_$(d) += usart.c
sFILES_$(d) := $(sSRCS_$(d):%=$(d)/%)