diff fteeprom/Makefile @ 31:16b625911e19

fteeprom: generalization of previous ee2232 tools
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 21 Apr 2019 04:14:00 +0000
parents
children a79b0240534a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fteeprom/Makefile	Sun Apr 21 04:14:00 2019 +0000
@@ -0,0 +1,22 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	ftee-gen2232c fteeprom-prog fteeprom-read
+INSTBIN=/opt/freecalypso/bin
+
+all:	${PROGS}
+
+ftee-gen2232c:	ftee-gen2232c.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+fteeprom-prog:	fteeprom-prog.c
+	${CC} ${CFLAGS} -o $@ $@.c -lftdi
+
+fteeprom-read:	fteeprom-read.c
+	${CC} ${CFLAGS} -o $@ $@.c -lftdi
+
+install:
+	mkdir -p ${INSTBIN}
+	install -c ${PROGS} ${INSTBIN}
+
+clean:
+	rm -f ${PROGS} *.o *errs *.out