view helpers/Makefile @ 21:5dd2fa1d3da1

README: minor fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 16 May 2020 18:44:01 +0000
parents 8123259c7f14
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	makeline

all:	${PROGS}

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

clean:
	rm -f ${PROGS}