view helpers/Makefile @ 25:b51027daadb9

add install-target-bin.sh script
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 02 Dec 2020 21:19:21 +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}