From d16223fd257ccc1d7060e372eb3d950cf68f8d37 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 7 Mar 2014 00:49:16 +0100 Subject: Modified text rendering to something frame based --- host/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/Makefile') diff --git a/host/Makefile b/host/Makefile index 8abc88a..85536f5 100644 --- a/host/Makefile +++ b/host/Makefile @@ -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 -- cgit