comparison 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
comparison
equal deleted inserted replaced
194:0983c77b8f54 195:4d9f24c501f3
1 CC= gcc
2 CFLAGS= -O2
3
4 all: bwsplash.c
5
6 pbm2c: pbm2c.c
7 ${CC} ${CFLAGS} -o $@ $@.c
8
9 bwsplash.c: bwsplash.pbm pbm2c
10 ./pbm2c bwsplash.pbm $@
11
12 clean:
13 rm -f pbm2c bwsplash.c