cleaned up modules, dependencies, includes and added font type

This commit is contained in:
2022-05-03 14:32:44 +02:00
parent e0d02d3529
commit 9705273d18
9 changed files with 96 additions and 142 deletions

View File

@@ -1,10 +1,13 @@
CFLAGS = -g -Wall -lm
CFLAGS=-g -Wall -lm
fbdash: fbdash.c fblib
gcc fblib.o -o $@ $(CFLAGS) $<
fbdash: fbdash.c fblib.o fbfont.o
gcc fblib.o fbfont.o -o $@ $(CFLAGS) $<
fblib: fblib.o
gcc -c fblib.c
fbfont: fbfont.o
gcc -c fbfont.c
clean:
rm fbdash fblib.o
rm -f fbdash fblib.o fbfont.o