FreeCalypso > hg > fc-usbser-tools
comparison fteeprom/Makefile @ 64:ca2250b4833d
fteeprom: factor out EEPROM image reading functions
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 12 Sep 2023 20:17:07 +0000 |
parents | af801ab43a33 |
children | 225dc1d9f2f1 |
comparison
equal
deleted
inserted
replaced
63:230b9790046b | 64:ca2250b4833d |
---|---|
23 ${CC} ${CFLAGS} -o $@ $@.c | 23 ${CC} ${CFLAGS} -o $@ $@.c |
24 | 24 |
25 fteeprom-erase: fteeprom-erase.o ${LIBS} | 25 fteeprom-erase: fteeprom-erase.o ${LIBS} |
26 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb | 26 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb |
27 | 27 |
28 fteeprom-prog: fteeprom-prog.o ${LIBS} | 28 fteeprom-prog: fteeprom-prog.o read_eeprom_image.o ${LIBS} |
29 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb | 29 ${CC} ${CFLAGS} -o $@ $@.o read_eeprom_image.o ${LIBS} -lusb |
30 | 30 |
31 fteeprom-read: fteeprom-read.o ${LIBS} | 31 fteeprom-read: fteeprom-read.o ${LIBS} |
32 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb | 32 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} -lusb |
33 | 33 |
34 install: | 34 install: |