FreeCalypso > hg > fc-rfcal-tools
annotate autocal/Makefile @ 56:df827df6db82
fc-rfcal-txbasis written, ready to test
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 27 May 2017 20:02:10 +0000 |
| parents | 21f6dba5c4df |
| children | 2588f9eed11a |
| rev | line source |
|---|---|
| 13 | 1 CC= gcc |
| 2 CFLAGS= -O2 -I/opt/freecalypso/include | |
|
56
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
3 PROGS= fc-rfcal-gmagic fc-rfcal-txbasis fc-rfcal-txcheck fc-rfcal-vcxo |
|
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
4 INSTBIN=/opt/freecalypso/bin |
|
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
5 |
|
45
98abe6bd2042
autocal: scw implemented for Rx cal
Mychaela Falconia <falcon@freecalypso.org>
parents:
44
diff
changeset
|
6 GMAGIC_OBJS= gmagicmain.o l1meas.o l1tmops.o rvinterf.o rxcommon.o \ |
|
98abe6bd2042
autocal: scw implemented for Rx cal
Mychaela Falconia <falcon@freecalypso.org>
parents:
44
diff
changeset
|
7 sockopts.o tsidsock.o |
|
98abe6bd2042
autocal: scw implemented for Rx cal
Mychaela Falconia <falcon@freecalypso.org>
parents:
44
diff
changeset
|
8 |
|
56
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
9 TXBASIS_OBJS= l1tmops.o rvinterf.o tsidsock.o txbasis.o txpwrmeas.o |
|
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
10 |
|
54
21f6dba5c4df
fc-rfcal-txcheck ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
53
diff
changeset
|
11 TXCHECK_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o txchkmain.o \ |
|
21f6dba5c4df
fc-rfcal-txcheck ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
53
diff
changeset
|
12 txpwrmeas.o |
|
53
bc2397f62bdb
rf-cal-txcheck started
Mychaela Falconia <falcon@freecalypso.org>
parents:
45
diff
changeset
|
13 |
|
24
0b6881281d86
fc-rfcal-vcxo ready for first test
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
14 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o |
| 13 | 15 |
|
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
16 all: ${PROGS} |
|
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
17 |
|
42
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
18 fc-rfcal-gmagic: ${GMAGIC_OBJS} |
|
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
19 ${CC} -o $@ ${GMAGIC_OBJS} |
|
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
20 |
|
56
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
21 fc-rfcal-txbasis: ${TXBASIS_OBJS} |
|
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
22 ${CC} -o $@ ${TXBASIS_OBJS} |
|
df827df6db82
fc-rfcal-txbasis written, ready to test
Mychaela Falconia <falcon@freecalypso.org>
parents:
54
diff
changeset
|
23 |
|
53
bc2397f62bdb
rf-cal-txcheck started
Mychaela Falconia <falcon@freecalypso.org>
parents:
45
diff
changeset
|
24 fc-rfcal-txcheck: ${TXCHECK_OBJS} |
|
bc2397f62bdb
rf-cal-txcheck started
Mychaela Falconia <falcon@freecalypso.org>
parents:
45
diff
changeset
|
25 ${CC} -o $@ ${TXCHECK_OBJS} |
|
bc2397f62bdb
rf-cal-txcheck started
Mychaela Falconia <falcon@freecalypso.org>
parents:
45
diff
changeset
|
26 |
|
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
27 fc-rfcal-vcxo: ${VCXO_OBJS} |
|
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
28 ${CC} -o $@ ${VCXO_OBJS} |
| 13 | 29 |
|
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
30 install: |
|
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
31 mkdir -p ${INSTBIN} |
|
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
32 install -c ${PROGS} ${INSTBIN} |
|
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
33 |
| 13 | 34 clean: |
|
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
35 rm -f *.o *.out *errs ${PROGS} |
