diff cp2102/Makefile @ 92:915a6fa7723e

cp2102-patch-ee-image program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 28 Sep 2023 01:37:43 +0000
parents 0787525a33e2
children c6d04771bf6a
line wrap: on
line diff
--- a/cp2102/Makefile	Wed Sep 27 20:46:30 2023 +0000
+++ b/cp2102/Makefile	Thu Sep 28 01:37:43 2023 +0000
@@ -1,7 +1,7 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	cp2102-decode-baudtab cp2102-decode-ee-desc cp2102-read-baudtab \
-	cp2102-read-eeprom cp2102-read-partno
+PROGS=	cp2102-decode-baudtab cp2102-decode-ee-desc cp2102-patch-ee-image \
+	cp2102-read-baudtab cp2102-read-eeprom cp2102-read-partno
 NOINST=	file_rw_test
 LIBS=	../libuwrap/libuwrap.a
 
@@ -14,6 +14,8 @@
 
 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
+PATCH_FILE_OBJS=	apply_eeprom_patch.o intel_hex_in.o intel_hex_out.o \
+			patch_ee_file.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
@@ -26,6 +28,9 @@
 cp2102-decode-ee-desc:	${DECODE_EEDESC_OBJS}
 	${CC} ${CFLAGS} -o $@ ${DECODE_EEDESC_OBJS}
 
+cp2102-patch-ee-image:	${PATCH_FILE_OBJS}
+	${CC} ${CFLAGS} -o $@ ${PATCH_FILE_OBJS}
+
 cp2102-read-baudtab:	${READ_BAUDTAB_OBJS} ${LIBS}
 	${CC} ${CFLAGS} -o $@ ${READ_BAUDTAB_OBJS} ${LIBS} -lusb