view helpers/Makefile @ 24:d7740787396c

README: compal-old vs. compal-new distinction is here
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 18 Oct 2020 22:57:26 +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}