view helpers/Makefile @ 250:9432dd63626b

firmware ident and build date mechanism implemented at the build level
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 03 Aug 2017 04:59:47 +0000
parents 35b17d54773d
children d4d07c751e56
line wrap: on
line source

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

all:	${PROGS}

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

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}