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
1 changed files with 9 additions and 0 deletions

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