comparison vcxo-manual/Makefile @ 0:bd62be88259d

initial import of rfcal code and docs from freecalypso-tools repository
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 20 May 2017 18:49:35 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bd62be88259d
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= fc-vcxo-linear fc-vcxo-param
4 INSTBIN=/opt/freecalypso/bin
5
6 LINEAR_OBJS= linear.o readmeas.o
7 GENPARAMS_OBJS= genparams.o readmeas.o
8
9 all: ${PROGS}
10
11 fc-vcxo-linear: ${LINEAR_OBJS}
12 ${CC} ${CFLAGS} -o $@ ${LINEAR_OBJS}
13
14 fc-vcxo-param: ${GENPARAMS_OBJS}
15 ${CC} ${CFLAGS} -o $@ ${GENPARAMS_OBJS}
16
17 install:
18 mkdir -p ${INSTBIN}
19 install -c ${PROGS} ${INSTBIN}
20
21 clean:
22 rm -f *.o *.out *errs ${PROGS}