FreeCalypso > hg > freecalypso-hwlab
diff ee2232/Makefile @ 4:02ea5dbdf84b
ee2232-prog: input parsing implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Apr 2018 22:30:38 +0000 |
parents | ef43bbfa8d16 |
children |
line wrap: on
line diff
--- a/ee2232/Makefile Thu Apr 05 21:48:05 2018 +0000 +++ b/ee2232/Makefile Thu Apr 05 22:30:38 2018 +0000 @@ -1,6 +1,6 @@ CC= gcc CFLAGS= -O2 -PROGS= ee2232-gen ee2232-read +PROGS= ee2232-gen ee2232-prog ee2232-read INSTBIN=/opt/freecalypso/bin all: ${PROGS} @@ -8,6 +8,9 @@ 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