mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-15 17:58:46 +02:00
b496ead7b3
Imported from util/spkmodem_recv at coreboot revision: e70bc423f9a2e1d13827f2703efe1f9c72549f20 This is a client for spkmodem, to allow serial console via PC speaker. I've decided to import it in lbmk, because I heavily modified it. The patches will be applied next. Signed-off-by: Leah Rowe <leah@libreboot.org>
10 lines
225 B
Makefile
10 lines
225 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
PREFIX ?= /usr/local
|
|
INSTALL ?= install
|
|
|
|
spkmodem-recv:
|
|
$(CC) -o $@ $@.c
|
|
install: spkmodem-recv
|
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin/
|
|
$(INSTALL) $< -t $(DESTDIR)$(PREFIX)/bin/
|