diff bwsplash/Makefile @ 195:4d9f24c501f3

bwsplash: simple splash screen for FreeCalypso Lite (smallbw)
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 28 Mar 2021 21:36:48 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bwsplash/Makefile	Sun Mar 28 21:36:48 2021 +0000
@@ -0,0 +1,13 @@
+CC=	gcc
+CFLAGS=	-O2
+
+all:	bwsplash.c
+
+pbm2c:	pbm2c.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+bwsplash.c:	bwsplash.pbm pbm2c
+	./pbm2c bwsplash.pbm $@
+
+clean:
+	rm -f pbm2c bwsplash.c