FreeCalypso > hg > fc-usbser-tools
annotate duart28/Makefile @ 27:2413a54a1bfc
fc-duart28-conf started
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sat, 09 Sep 2023 17:53:21 +0000 | 
| parents | fteeprom/Makefile@af801ab43a33 | 
| children | a7393d00996a | 
| rev | line source | 
|---|---|
| 
0
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
1 CC= gcc | 
| 
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
2 CFLAGS= -O2 | 
| 
27
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
3 PROG= fc-duart28-conf | 
| 
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
4 OBJS= find_usb.o main.o | 
| 
16
 
1d76deae1e74
fteeprom-read: convert to new local libs
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
7 
diff
changeset
 | 
5 LIBS= ../libftmini/libftmini.a ../libuwrap/libuwrap.a | 
| 
4
 
2e84619e7422
fteeprom/Makefile: implement INSTALL_PREFIX
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
0 
diff
changeset
 | 
6 | 
| 
 
2e84619e7422
fteeprom/Makefile: implement INSTALL_PREFIX
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
0 
diff
changeset
 | 
7 INSTALL_PREFIX= /opt/freecalypso | 
| 
 
2e84619e7422
fteeprom/Makefile: implement INSTALL_PREFIX
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
0 
diff
changeset
 | 
8 | 
| 
 
2e84619e7422
fteeprom/Makefile: implement INSTALL_PREFIX
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
0 
diff
changeset
 | 
9 INSTBIN=${INSTALL_PREFIX}/bin | 
| 
0
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
10 | 
| 
27
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
11 all: ${PROG} | 
| 
0
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
12 | 
| 
27
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
13 ${PROG}: ${OBJS} ${LIBS} | 
| 
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
14 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} -lusb | 
| 
0
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
15 | 
| 
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
16 install: | 
| 
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
17 mkdir -p ${INSTBIN} | 
| 
27
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
18 install -c ${PROG} ${INSTBIN} | 
| 
0
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
19 | 
| 
 
11b8a30333b3
fteeprom: initial import from freecalypso-hwlab
 
Mychaela Falconia <falcon@freecalypso.org> 
parents:  
diff
changeset
 | 
20 clean: | 
| 
27
 
2413a54a1bfc
fc-duart28-conf started
 
Mychaela Falconia <falcon@freecalypso.org> 
parents: 
21 
diff
changeset
 | 
21 rm -f ${PROG} *.o *errs *.out | 
