summaryrefslogtreecommitdiff
path: root/spl.mk
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2017-08-26 00:44:10 +0200
committerChristian Pointner <equinox@spreadspace.org>2017-08-26 00:44:10 +0200
commitfdcf4f08a5eb2e0b8d9b23db5fdc6dddce668435 (patch)
tree01255cd400efeb35e73557761549057d0c8fadb7 /spl.mk
parentupdated StdPeriph Lib Patch: https://github.com/tenbaht/sduino/wiki/spl (diff)
rename external lib stdperiph to spl
Diffstat (limited to 'spl.mk')
-rw-r--r--spl.mk38
1 files changed, 38 insertions, 0 deletions
diff --git a/spl.mk b/spl.mk
new file mode 100644
index 0000000..aa6121a
--- /dev/null
+++ b/spl.mk
@@ -0,0 +1,38 @@
+##
+## spreadspace stm8 utils
+##
+##
+## Copyright (C) 2017 Christian Pointner <equinox@spreadspace.org>
+##
+## This file is part of spreadspace stm8 utils.
+##
+## spreadspace stm8 utils is free software: you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
+##
+## spreadspace stm8 utils is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with spreadspace stm8 utils. If not, see <http://www.gnu.org/licenses/>.
+##
+
+include $(SPREADSTM8_PATH)/defines.mk
+CFLAGS += -D$(SPL_MCU)
+CFLAGS += -I$(SPL_PATH)/Libraries/STM8S_StdPeriph_Driver/inc
+CFLAGS += -I./
+
+SRC:=$(SPL_COMPONENTS:%=$(SPL_PATH)/Libraries/STM8S_StdPeriph_Driver/src/stm8s_%.c)
+OBJ = $(SRC:%.c=%.rel)
+
+libspl.a: $(OBJ)
+ $(AR) $@ $(OBJ)
+
+%.rel: %.c
+ $(CC) -c $(CFLAGS) $< -o $@
+
+clean:
+ rm -f $(SRC:%.c=%.rel) $(SRC:%.c=%.sym) $(SRC:%.c=%.lst) $(SRC:%.c=%.asm)