annotate autocal/Makefile @ 42:dcf7cd305e2b

fc-rfcal-gmagic started
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 27 May 2017 05:04:14 +0000
parents ea1d9f7f625f
children 5018fd8eecce
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13
d7e436bf4876 starting autocal
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
d7e436bf4876 starting autocal
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
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
42
dcf7cd305e2b fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents: 32
diff changeset
6 GMAGIC_OBJS= gmagicmain.o l1tmops.o rvinterf.o sockopts.o tsidsock.o
24
0b6881281d86 fc-rfcal-vcxo ready for first test
Mychaela Falconia <falcon@freecalypso.org>
parents: 22
diff changeset
7 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o
13
d7e436bf4876 starting autocal
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
22
e8bcead3aa9b autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents: 21
diff changeset
9 all: ${PROGS}
e8bcead3aa9b autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents: 21
diff changeset
10
42
dcf7cd305e2b fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents: 32
diff changeset
11 fc-rfcal-gmagic: ${GMAGIC_OBJS}
dcf7cd305e2b fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents: 32
diff changeset
12 ${CC} -o $@ ${GMAGIC_OBJS}
dcf7cd305e2b fc-rfcal-gmagic started
Mychaela Falconia <falcon@freecalypso.org>
parents: 32
diff changeset
13
22
e8bcead3aa9b autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents: 21
diff changeset
14 fc-rfcal-vcxo: ${VCXO_OBJS}
e8bcead3aa9b autocal: started linking fc-rfcal-vcxo
Mychaela Falconia <falcon@freecalypso.org>
parents: 21
diff changeset
15 ${CC} -o $@ ${VCXO_OBJS}
13
d7e436bf4876 starting autocal
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
32
ea1d9f7f625f autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents: 24
diff changeset
17 install:
ea1d9f7f625f autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents: 24
diff changeset
18 mkdir -p ${INSTBIN}
ea1d9f7f625f autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents: 24
diff changeset
19 install -c ${PROGS} ${INSTBIN}
ea1d9f7f625f autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents: 24
diff changeset
20
13
d7e436bf4876 starting autocal
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 clean:
32
ea1d9f7f625f autocal/Makefile: make install added
Mychaela Falconia <falcon@freecalypso.org>
parents: 24
diff changeset
22 rm -f *.o *.out *errs ${PROGS}