FreeCalypso > hg > fc-usbser-tools
view cp2102/Makefile @ 57:deba1d5c8024
artifacts/Pirelli-CP2102: fix Intel HEX format
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Sep 2023 19:54:28 +0000 |
parents | c0084bf153e5 |
children | 4890ded06a8b |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= cp2102-read-eeprom cp2102-read-partno NOINST= file_rw_test LIBS= ../libuwrap/libuwrap.a INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin 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 all: ${PROGS} ${NOINST} cp2102-read-eeprom: ${READ_EEPROM_OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${READ_EEPROM_OBJS} ${LIBS} -lusb 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} ${NOINST} *.o *errs *.out