view duart28/Makefile @ 29:a7393d00996a

fc-duart28-conf: implement check-eeprom
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 Sep 2023 19:13:35 +0000
parents 2413a54a1bfc
children 530ec3792de8
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fc-duart28-conf
OBJS=	eeprom_rd.o find_usb.o main.o
LIBS=	../libftmini/libftmini.a ../libuwrap/libuwrap.a

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROG}

${PROG}:	${OBJS} ${LIBS}
	${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} -lusb

install:
	mkdir -p ${INSTBIN}
	install -c ${PROG} ${INSTBIN}

clean:
	rm -f ${PROG} *.o *errs *.out