view helpers/Makefile @ 231:06aa823879f8

2092, 2092-pwr and hybrid configs: build l1_custom_int.lib from source likewise
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 12 Mar 2017 20:11:41 +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}