view helpers/Makefile @ 520:ea4daae6e1ce

R2D defenestration: LCD-specific include paths case-fixed
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 22 Jul 2018 17:11:50 +0000
parents b8b08c302ace
children a490b0466fed
line wrap: on
line source

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

all:	${PROGS}

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

cfg-hdr-gen:	cfg-hdr-gen.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}