view lunakpd1/placetool/Makefile @ 79:48f3c5997dec

lunalcd3: add Makefile for Gerber output generation
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 04 Dec 2021 22:28:05 +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}