diff fteeprom/Makefile @ 0:11b8a30333b3

fteeprom: initial import from freecalypso-hwlab
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 03 Sep 2023 18:08:22 +0000
parents
children 2e84619e7422
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fteeprom/Makefile	Sun Sep 03 18:08:22 2023 +0000
@@ -0,0 +1,35 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	ftee-gen2232c ftee-gen2232h ftee-gen232r ftee-mkblank fteeprom-erase \
+	fteeprom-prog fteeprom-read
+INSTBIN=/opt/freecalypso/bin
+
+all:	${PROGS}
+
+ftee-gen2232c:	ftee-gen2232c.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+ftee-gen2232h:	ftee-gen2232h.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+ftee-gen232r:	ftee-gen232r.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+ftee-mkblank:	ftee-mkblank.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+fteeprom-erase:	fteeprom-erase.c
+	${CC} ${CFLAGS} -o $@ $@.c -lftdi
+
+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