diff options
author | jaseg <jaseg@jaseg.net> | 2014-03-07 00:49:16 +0100 |
---|---|---|
committer | jaseg <jaseg@jaseg.net> | 2014-03-07 00:49:16 +0100 |
commit | d16223fd257ccc1d7060e372eb3d950cf68f8d37 (patch) | |
tree | 6484e177faff92ed77b2f91acaadaba33131b44d /host/Makefile | |
parent | 7878aa1d455ab24d0336fc68eb09f726bcba10b2 (diff) | |
download | matelight-d16223fd257ccc1d7060e372eb3d950cf68f8d37.tar.gz matelight-d16223fd257ccc1d7060e372eb3d950cf68f8d37.tar.bz2 matelight-d16223fd257ccc1d7060e372eb3d950cf68f8d37.zip |
Modified text rendering to something frame based
Diffstat (limited to 'host/Makefile')
-rw-r--r-- | host/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |