FreeCalypso > hg > fc-usbser-tools
comparison fteeprom/Makefile @ 66:85256d5aa559
ftee-fix-cksum program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 12 Sep 2023 23:19:05 +0000 |
parents | 225dc1d9f2f1 |
children |
comparison
equal
deleted
inserted
replaced
65:225dc1d9f2f1 | 66:85256d5aa559 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= ftee-decode ftee-gen2232c ftee-gen2232h ftee-gen232r ftee-mkblank \ | 3 PROGS= ftee-decode ftee-fix-cksum ftee-gen2232c ftee-gen2232h ftee-gen232r \ |
4 fteeprom-erase fteeprom-prog fteeprom-read | 4 ftee-mkblank fteeprom-erase fteeprom-prog fteeprom-read |
5 LIBS= ../libftmini/libftmini.a ../libuwrap/libuwrap.a | 5 LIBS= ../libftmini/libftmini.a ../libuwrap/libuwrap.a |
6 | 6 |
7 INSTALL_PREFIX= /opt/freecalypso | 7 INSTALL_PREFIX= /opt/freecalypso |
8 | 8 |
9 INSTBIN=${INSTALL_PREFIX}/bin | 9 INSTBIN=${INSTALL_PREFIX}/bin |
10 | 10 |
11 all: ${PROGS} | 11 all: ${PROGS} |
12 | 12 |
13 ftee-decode: ftee-decode.o read_eeprom_image.o | 13 ftee-decode: ftee-decode.o read_eeprom_image.o |
14 ${CC} ${CFLAGS} -o $@ $@.o read_eeprom_image.o | |
15 | |
16 ftee-fix-cksum: ftee-fix-cksum.o read_eeprom_image.o | |
14 ${CC} ${CFLAGS} -o $@ $@.o read_eeprom_image.o | 17 ${CC} ${CFLAGS} -o $@ $@.o read_eeprom_image.o |
15 | 18 |
16 ftee-gen2232c: ftee-gen2232c.o filesearch.o | 19 ftee-gen2232c: ftee-gen2232c.o filesearch.o |
17 ${CC} ${CFLAGS} -o $@ $@.o filesearch.o | 20 ${CC} ${CFLAGS} -o $@ $@.o filesearch.o |
18 | 21 |