view duart28/Makefile @ 89:cddf60418f98

cp2102-decode-ee-desc: decode endpoint descriptors
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 27 Sep 2023 20:00:56 +0000
parents 530ec3792de8
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fc-duart28-conf
OBJS=	eeprom_rd.o eeprom_wr.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