FreeCalypso > hg > fc-usbser-tools
diff fteeprom/test/Makefile @ 1:ab2bb12ec959
fteeprom/test: import from freecalypso-hwlab
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 03 Sep 2023 18:09:28 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fteeprom/test/Makefile Sun Sep 03 18:09:28 2023 +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