view lunakpd1/placetool/Makefile @ 35:846ebd21db8e

duart28/design-spec: minor fixes in the so-far-written section
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 14 Jul 2020 19:01:29 +0000
parents 36a6ba7f30ca
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	placetool

all:	${PROG}

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

clean:
	rm -f ${PROG}