view bwsplash/Makefile @ 239:305d3bb691a5

FCHG startup: replace fchg_is_running with fchg_first_vbat and also report the first Vbat reading in a trace
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 02 May 2021 05:30:59 +0000
parents 4d9f24c501f3
children
line wrap: on
line source

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