diff cp2102/Makefile @ 85:0787525a33e2

cp2102-decode-ee-desc program started
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 27 Sep 2023 18:43:14 +0000
parents f5db4e03efb2
children 915a6fa7723e
line wrap: on
line diff
--- a/cp2102/Makefile	Wed Sep 27 18:38:10 2023 +0000
+++ b/cp2102/Makefile	Wed Sep 27 18:43:14 2023 +0000
@@ -1,7 +1,7 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	cp2102-decode-baudtab cp2102-read-baudtab cp2102-read-eeprom \
-	cp2102-read-partno
+PROGS=	cp2102-decode-baudtab cp2102-decode-ee-desc cp2102-read-baudtab \
+	cp2102-read-eeprom cp2102-read-partno
 NOINST=	file_rw_test
 LIBS=	../libuwrap/libuwrap.a
 
@@ -13,6 +13,7 @@
 INSTDAT=${INSTALL_PREFIX}/cp2102
 
 DECODE_BAUDTAB_OBJS=	decode_baudtab.o decode_baudtab_main.o intel_hex_in.o
+DECODE_EEDESC_OBJS=	decode_usb_desc.o intel_hex_in.o
 READ_BAUDTAB_OBJS=	decode_baudtab.o read_baudtab.o read_eeprom.o
 READ_EEPROM_OBJS=	intel_hex_out.o read_eeprom.o read_eeprom_main.o
 RW_TEST_OBJS=		intel_hex_in.o intel_hex_out.o file_rw_test.o
@@ -22,6 +23,9 @@
 cp2102-decode-baudtab:	${DECODE_BAUDTAB_OBJS}
 	${CC} ${CFLAGS} -o $@ ${DECODE_BAUDTAB_OBJS}
 
+cp2102-decode-ee-desc:	${DECODE_EEDESC_OBJS}
+	${CC} ${CFLAGS} -o $@ ${DECODE_EEDESC_OBJS}
+
 cp2102-read-baudtab:	${READ_BAUDTAB_OBJS} ${LIBS}
 	${CC} ${CFLAGS} -o $@ ${READ_BAUDTAB_OBJS} ${LIBS} -lusb