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