mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-13 23:09:40 +02:00
f2887e9b45
Signed-off-by: Leah Rowe <leah@libreboot.org>
11 lines
281 B
Makefile
11 lines
281 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
PREFIX ?= /usr/local
|
|
INSTALL ?= install
|
|
CFLAGS ?= -Os -Wall -Wextra -Werror -pedantic
|
|
|
|
spkmodem-recv:
|
|
$(CC) $(CFLAGS) -o $@ $@.c
|
|
install: spkmodem-recv
|
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin/
|
|
$(INSTALL) $< -t $(DESTDIR)$(PREFIX)/bin/
|