view ueda/unet-utils/Makefile @ 152:d41cdd682db5

m4-fp: support for CUI DS04-254-SMT DIP switch series
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 24 Jun 2021 05:13:16 +0000
parents 7c0fd80782c8
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	unet-destar unet-excise unet2pads unet2pcb unet2protel unet2tedax
LIBUNET=../libunet/libunet.a
BINDIR=	/usr/local/bin

all:	${PROGS}

${PROGS}:	${LIBUNET}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBUNET}

install:
	install -c -o bin -g bin -m 755 ${PROGS} ${BINDIR}

clean:
	rm -f *.[ao] a.out core errs ${PROGS}

unet-destar:	unet-destar.o
unet-excise:	unet-excise.o
unet2pads:	unet2pads.o
unet2pcb:	unet2pcb.o
unet2protel:	unet2protel.o
unet2tedax:	unet2tedax.o