FreeCalypso > hg > freecalypso-hwlab
view fteeprom/test/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 | 86db7b4bfca4 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fteeprom-prog-bad all: ${PROGS} fteeprom-prog-bad: fteeprom-prog-bad.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi clean: rm -f ${PROGS} *.o *errs *.out