FreeCalypso > hg > fc-rfcal-tools
annotate autocal/Makefile @ 22:e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 May 2017 21:01:29 +0000 |
parents | a3f48378658d |
children | 0b6881281d86 |
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 |
e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
5 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.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 |