mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-08-12 09:39:25 +03:00
13 lines
290 B
Makefile
13 lines
290 B
Makefile
BINARY := servo
|
|
PREFIX := /usr/bin/arm-none-eabi
|
|
CFLAGS = -std=c23
|
|
CPPFLAGS = -std=c++11
|
|
# MCU code
|
|
MCU := G431xx
|
|
# change this linking script depending on particular MCU model,
|
|
LDSCRIPT := stm32g431xb.ld
|
|
|
|
include ../makefile.g4
|
|
include ../../makefile.stm32
|
|
|