view lunakpd1/placetool/Makefile @ 27:b58388f57c16

duart28 MCL: ferrite bead defined
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 13 Jun 2020 18:12:28 +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}