view fteeprom/Makefile @ 26:49239efbdcc8

rm fteeprom/test/fteeprom-prog-bad When the magic command sequence for FT232R was added to libftdi-based fteeprom-prog, a version without this magic sequence was preserved in fteeprom-prog-bad. However, the new minilib version of fteeprom-prog operates without this magic sequence by default (as appropriate for FT2232D, FT2232H etc) and needs to be run with -r option to invoke FT232R-specific mode with the necessary magic. Anyone who needs fteeprom-prog-bad for study or experimentation can find it in freecalypso-hwlab Hg repository where it was originally developed.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 Sep 2023 16:06:56 +0000
parents af801ab43a33
children ca2250b4833d
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	ftee-gen2232c ftee-gen2232h ftee-gen232r ftee-mkblank fteeprom-erase \
	fteeprom-prog fteeprom-read
LIBS=	../libftmini/libftmini.a ../libuwrap/libuwrap.a

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROGS}

ftee-gen2232c:	ftee-gen2232c.o filesearch.o
	${CC} ${CFLAGS} -o $@ $@.o filesearch.o

ftee-gen2232h:	ftee-gen2232h.o filesearch.o
	${CC} ${CFLAGS} -o $@ $@.o filesearch.o

ftee-gen232r:	ftee-gen232r.o filesearch.o
	${CC} ${CFLAGS} -o $@ $@.o filesearch.o

ftee-mkblank:	ftee-mkblank.c
	${CC} ${CFLAGS} -o $@ $@.c

fteeprom-erase:	fteeprom-erase.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb

fteeprom-prog:	fteeprom-prog.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb

fteeprom-read:	fteeprom-read.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb

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

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