view lunakpd1/placetool/Makefile @ 84:dbd57e8dd82a default tip

sim-fpc-pasv/pcb: add Makefile for Gerber output
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 02 Nov 2022 07:22:44 +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}