FreeCalypso > hg > fc-rfcal-tools
annotate autocal/Makefile @ 37:498b90f6e224
fc-cmu200d: added command line options
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 27 May 2017 01:58:06 +0000 |
parents | ea1d9f7f625f |
children | dcf7cd305e2b |
rev | line source |
---|---|
13 | 1 CC= gcc |
2 CFLAGS= -O2 -I/opt/freecalypso/include | |
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
3 PROGS= 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 |
24
0b6881281d86
fc-rfcal-vcxo ready for first test
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
6 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o |
13 | 7 |
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
8 all: ${PROGS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
9 |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
10 fc-rfcal-vcxo: ${VCXO_OBJS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
11 ${CC} -o $@ ${VCXO_OBJS} |
13 | 12 |
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
13 install: |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
14 mkdir -p ${INSTBIN} |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
15 install -c ${PROGS} ${INSTBIN} |
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
16 |
13 | 17 clean: |
32
ea1d9f7f625f
autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
18 rm -f *.o *.out *errs ${PROGS} |