summaryrefslogtreecommitdiff
path: root/src/draw/Makefile
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-11-20 00:04:27 -0800
committerKeith Packard <keithp@keithp.com>2016-11-20 00:04:27 -0800
commite6518cf1ddfc087ca25fa1494f993ce03e43e138 (patch)
tree8351ae428fcfcc70c210803eba8bc4fb912b8302 /src/draw/Makefile
parent86f1c4b04946956f40755286bd9554828d5c8728 (diff)
altos/stm-vga: Implement VGA out from the STM processor
Generates vsync/hsync using timers and pixel data using the SPI port. 320x240 video using 640x480 mode and a 24MHz "pixel" clock. Includes the beginings of rendering code for the frame buffer, including bitblt, solid fill and text with a 5x7 font. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/draw/Makefile')
-rw-r--r--src/draw/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/draw/Makefile b/src/draw/Makefile
new file mode 100644
index 00000000..0a542a1f
--- /dev/null
+++ b/src/draw/Makefile
@@ -0,0 +1,4 @@
+BDF=5x7.bdf
+
+ao_font.h: font-convert $(BDF)
+ nickle font-convert $(BDF) > $@