FreeCalypso > hg > fc-rfcal-tools
annotate autocal/Makefile @ 25:5226dbaa5333
autocal/vcxomeas.c: brown paper bag
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 May 2017 22:09:59 +0000 |
parents | 0b6881281d86 |
children | ea1d9f7f625f |
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 |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
4 |
24
0b6881281d86
fc-rfcal-vcxo ready for first test
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
5 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o |
13 | 6 |
22
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
7 all: ${PROGS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
8 |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
9 fc-rfcal-vcxo: ${VCXO_OBJS} |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
10 ${CC} -o $@ ${VCXO_OBJS} |
13 | 11 |
12 clean: | |
13 rm -f *.o *.out *errs |