FreeCalypso > hg > freecalypso-hwlab
view ee2232/Makefile @ 171:88b8257d353b
eeproms: rm all configs that went to fc-usbser-tools
These configs need to be actively maintained, hence having more than one
official home location for them is a bad idea.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Sep 2023 05:21:56 +0000 |
parents | 02ea5dbdf84b |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= ee2232-gen ee2232-prog ee2232-read INSTBIN=/opt/freecalypso/bin all: ${PROGS} ee2232-gen: ee2232-gen.c ${CC} ${CFLAGS} -o $@ $@.c ee2232-prog: ee2232-prog.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi ee2232-read: ee2232-read.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out