view helpers/Makefile @ 70:1703454d7008

blobs/obj: L1 from 20070608 in the form of loose *.obj files
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 02 Oct 2016 00:01:42 +0000
parents f4eeab478bfe
children 40b08f6cb2b8
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	makeline str2ind-ver

all:	${PROGS}

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

str2ind-ver:	str2ind-ver.c
	${CC} ${CFLAGS} -o $@ $@.c

clean:
	rm -f ${PROGS}