mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-11-17 18:16:18 -05:00
9 lines
204 B
Makefile
9 lines
204 B
Makefile
|
# Makefile -- sign32
|
||
|
# Copyright (c) 2021 Renaud Fivet
|
||
|
|
||
|
# silence unused parameter warning
|
||
|
WARNINGS=-pedantic -Wall -Wextra -Wstrict-prototypes -Wno-unused-parameter
|
||
|
CFLAGS = $(WARNINGS) -O2
|
||
|
|
||
|
all: sign32
|