diff cp2102/Makefile @ 55:c0084bf153e5

cp2102: Intel HEX reading implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 11 Sep 2023 19:45:56 +0000
parents d4d3531d342a
children 4890ded06a8b
line wrap: on
line diff
--- a/cp2102/Makefile	Mon Sep 11 18:56:04 2023 +0000
+++ b/cp2102/Makefile	Mon Sep 11 19:45:56 2023 +0000
@@ -1,6 +1,7 @@
 CC=	gcc
 CFLAGS=	-O2
 PROGS=	cp2102-read-eeprom cp2102-read-partno
+NOINST=	file_rw_test
 LIBS=	../libuwrap/libuwrap.a
 
 INSTALL_PREFIX=	/opt/freecalypso
@@ -9,7 +10,9 @@
 
 READ_EEPROM_OBJS=	intel_hex_out.o read_eeprom.o read_eeprom_main.o
 
-all:	${PROGS}
+RW_TEST_OBJS=		intel_hex_in.o intel_hex_out.o file_rw_test.o
+
+all:	${PROGS} ${NOINST}
 
 cp2102-read-eeprom:	${READ_EEPROM_OBJS} ${LIBS}
 	${CC} ${CFLAGS} -o $@ ${READ_EEPROM_OBJS} ${LIBS} -lusb
@@ -17,9 +20,12 @@
 cp2102-read-partno:	read_partno.o ${LIBS}
 	${CC} ${CFLAGS} -o $@ read_partno.o ${LIBS} -lusb
 
+file_rw_test:		${RW_TEST_OBJS}
+	${CC} ${CFLAGS} -o $@ ${RW_TEST_OBJS}
+
 install:
 	mkdir -p ${INSTBIN}
 	install -c ${PROGS} ${INSTBIN}
 
 clean:
-	rm -f ${PROGS} *.o *errs *.out
+	rm -f ${PROGS} ${NOINST} *.o *errs *.out