FreeCalypso > hg > freecalypso-hwlab
diff fteeprom/test/Makefile @ 77:86db7b4bfca4
fteeprom-prog-bad: make the "bad" version easily accessible for testing
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 17 Sep 2020 00:43:26 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fteeprom/test/Makefile Thu Sep 17 00:43:26 2020 +0000 @@ -0,0 +1,11 @@ +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