mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +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
|