view helpers/Makefile @ 20:49bd6136f4a9

README added
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 16 May 2020 07:27:31 +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}