view helpers/Makefile @ 290:0e5ccb343284

implement PWT buzzer driver The piece implemented here is the low-level driver component; there will also be a higher-level buzzer melody player service, to be implemented in RiViera land, that will be the sole caller of PWT API functions provided by the present driver.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 26 Mar 2022 18:23:50 +0000
parents 1fb47f5b597a
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	build-date cfg-hdr-gen makeline mk-flash-script mokosrec2bin srec4ram \
	str2ind-ver

all:	${PROGS}

build-date:	build-date.c
	${CC} ${CFLAGS} -o $@ $@.c

cfg-hdr-gen:	cfg-hdr-gen.c
	${CC} ${CFLAGS} -o $@ $@.c

makeline:	makeline.c
	${CC} ${CFLAGS} -o $@ $@.c

mk-flash-script:	mk-flash-script.c
	${CC} ${CFLAGS} -o $@ $@.c

mokosrec2bin:	mokosrec2bin.c
	${CC} ${CFLAGS} -o $@ $@.c

srec4ram:	srec4ram.c
	${CC} ${CFLAGS} -o $@ $@.c

str2ind-ver:	str2ind-ver.c
	${CC} ${CFLAGS} -o $@ $@.c

clean:
	rm -f ${PROGS}