view helpers/Makefile @ 278:ca343ccbca81

dar_reset_system(): check the entity_dar_callback pointer for NULL before calling through it
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 07 Aug 2017 04:20:45 +0000
parents d4d07c751e56
children b8b08c302ace
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	build-date makeline mk-flash-script srec4ram str2ind-ver

all:	${PROGS}

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

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

mk-flash-script:	mk-flash-script.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}