view helpers/Makefile @ 198:712a28fda778

init.c: sync with Magnetite This change affects only the D-Sample target which is not supported in Selenite, but we need to keep the diff down.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 28 May 2020 05:33:05 +0000
parents 47037439ed64
children
line wrap: on
line source

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

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

clean:
	rm -f ${PROGS}