Skip to content
Snippets Groups Projects
Commit cc267d2d authored by Leah Rowe's avatar Leah Rowe
Browse files

util/spkmodem_recv: Add strict CFLAGS


Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 69751fa1
Branches
No related merge requests found
# SPDX-License-Identifier: GPL-2.0-or-later
PREFIX ?= /usr/local
INSTALL ?= install
CFLAGS ?= -Os -Wall -Wextra -Werror -pedantic
spkmodem-recv:
$(CC) -o $@ $@.c
$(CC) $(CFLAGS) -o $@ $@.c
install: spkmodem-recv
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin/
$(INSTALL) $< -t $(DESTDIR)$(PREFIX)/bin/
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment