view helpers/Makefile @ 323:f08212cf0b04

components/fchg compilation recipe created
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 04 Dec 2017 06:00:15 +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}