view helpers/Makefile @ 19:88f40f4c829f

condat2 vs. condat3 includes selection logic
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 28 Sep 2016 01:37:28 +0000
parents 05945a9b9dda
children f4eeab478bfe
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	makeline

all:	${PROGS}

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

clean:
	rm -f ${PROGS}