Modified text rendering to something frame based

This commit is contained in:
jaseg 2014-03-07 00:49:16 +01:00
parent 7878aa1d45
commit d16223fd25
7 changed files with 89 additions and 85 deletions

View file

@ -5,8 +5,8 @@ all: libml libbdf
libml: usb.c color.c color.h
gcc -shared -fPIC -std=gnu11 -Wall -lm -lusb-1.0 -o libml.so -g usb.c color.c
libbdf: main.c font.c font.h color.c color.h
gcc -shared -fPIC -std=gnu11 -Wall -lm -o libbdf.so -g main.c font.c color.c
libbdf: bdf.c font.c font.h color.c color.h
gcc -shared -fPIC -std=gnu11 -Wall -lm -o libbdf.so -g bdf.c font.c color.c
clean:
rm libbdf.so libml.so