view helpers/Makefile @ 103:76d139c7a25e

targets/fcdev3b.conf: we'll have the same memory IC as the Pirelli, so use the same flash and RAM linker scripts templates
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 04 Oct 2016 04:31:20 +0000
parents 40b08f6cb2b8
children 35b17d54773d
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	makeline srec4ram str2ind-ver

all:	${PROGS}

makeline:	makeline.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}