FreeCalypso > hg > fc-rfcal-tools
annotate autocal/Makefile @ 44:5018fd8eecce
autocal: started Rx cal core code
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 27 May 2017 05:33:42 +0000 |
parents | dcf7cd305e2b |
children | 98abe6bd2042 |
rev | line source |
---|---|
13 | 1 CC= gcc |
2 CFLAGS= -O2 -I/opt/freecalypso/include | |
42
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
3 PROGS= fc-rfcal-gmagic 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 |
44
5018fd8eecce
autocal: started Rx cal core code
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
6 GMAGIC_OBJS= gmagicmain.o l1tmops.o rvinterf.o rxcommon.o sockopts.o \ |
5018fd8eecce
autocal: started Rx cal core code
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
7 tsidsock.o |
24
0b6881281d86
fc-rfcal-vcxo ready for first test
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
8 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o |
13 | 9 |
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
10 all: ${PROGS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
11 |
42
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
12 fc-rfcal-gmagic: ${GMAGIC_OBJS} |
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
13 ${CC} -o $@ ${GMAGIC_OBJS} |
dcf7cd305e2b
fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents:
32
diff
changeset
|
14 |
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
15 fc-rfcal-vcxo: ${VCXO_OBJS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
16 ${CC} -o $@ ${VCXO_OBJS} |
13 | 17 |
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
18 install: |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
19 mkdir -p ${INSTBIN} |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
20 install -c ${PROGS} ${INSTBIN} |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
21 |
13 | 22 clean: |
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
23 rm -f *.o *.out *errs ${PROGS} |