1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

gen: add Makefile for strwidth

This commit is contained in:
Pavol Rusnak 2017-07-17 12:25:07 +02:00
parent d2c90d70dc
commit a2226c410e
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

9
gen/Makefile Normal file
View File

@ -0,0 +1,9 @@
CC=gcc
all: strwidth
strwidth: strwidth.c fonts.c
$(CC) strwidth.c fonts.c -o strwidth -lreadline
clean:
rm -f strwidth