view duart28/Makefile @ 37:825d3303b886

doc/Shipped-EEPROM-configs: new article
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 10 Sep 2023 05:19:50 +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