view helpers/Makefile @ 248:35b17d54773d

helpers: build-date helper program written
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 03 Aug 2017 04:24:06 +0000
parents 40b08f6cb2b8
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}