FreeCalypso > hg > freecalypso-tools
comparison rfcal/vcxo-manual/Makefile @ 181:dcab0be3f67a
started manual VCXO calibration code: fc-vcxo-linear utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Apr 2017 06:45:45 +0000 |
parents | |
children | 9099a35a705f |
comparison
equal
deleted
inserted
replaced
180:e50c3aa1152a | 181:dcab0be3f67a |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= fc-vcxo-linear | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 LINEAR_OBJS= linear.o readmeas.o | |
7 | |
8 all: ${PROGS} | |
9 | |
10 fc-vcxo-linear: ${LINEAR_OBJS} | |
11 ${CC} ${CFLAGS} -o $@ ${LINEAR_OBJS} | |
12 | |
13 install: | |
14 mkdir -p ${INSTBIN} | |
15 install -c ${PROGS} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f *.o *.out *errs ${PROGS} |