mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
10 lines
125 B
Makefile
10 lines
125 B
Makefile
CC=gcc
|
|
|
|
all: strwidth
|
|
|
|
strwidth: strwidth.c fonts.c
|
|
$(CC) strwidth.c fonts.c -o strwidth -lreadline
|
|
|
|
clean:
|
|
rm -f strwidth
|