diff options
author | jaseg <git@jaseg.net> | 2018-01-05 12:23:24 +0100 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2018-01-05 12:23:24 +0100 |
commit | c2e293d976f37784a22f552ce1562dcb3bc8345a (patch) | |
tree | a9f54d95580da67f7bdf7448cf90efd872ece292 /fw/Makefile | |
parent | e3094b18d4fc1b5f8e5e7ca146318e501a7a4ff9 (diff) | |
download | 7seg-c2e293d976f37784a22f552ce1562dcb3bc8345a.tar.gz 7seg-c2e293d976f37784a22f552ce1562dcb3bc8345a.tar.bz2 7seg-c2e293d976f37784a22f552ce1562dcb3bc8345a.zip |
Split project into individual source files and add license
Diffstat (limited to 'fw/Makefile')
-rw-r--r-- | fw/Makefile | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/fw/Makefile b/fw/Makefile index 70f1132..6bd74c5 100644 --- a/fw/Makefile +++ b/fw/Makefile @@ -1,3 +1,19 @@ +# Megumin LED display firmware +# Copyright (C) 2018 Sebastian Götte <code@jaseg.net> +# +# This program 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 +# (at your option) any later version. +# +# This program 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 this program. If not, see <http://www.gnu.org/licenses/>. + CUBE_PATH ?= $(wildcard ~)/resource/STM32CubeF0 CMSIS_PATH ?= $(CUBE_PATH)/Drivers/CMSIS CMSIS_DEV_PATH ?= $(CMSIS_PATH)/Device/ST/STM32F0xx @@ -61,7 +77,7 @@ sources.c: sources.tar.xz.zip xxd -i $< | head -n -1 | sed 's/=/__attribute__((section(".source_tarball"))) =/' > $@ # FIXME re-add sources.o -main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o transpose.o mac.o +main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o transpose.o mac.o adc.o serial.o display.o led.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(OBJCOPY) -O ihex $@ $(@:.elf=.hex) $(OBJCOPY) -O binary $@ $(@:.elf=.bin) |