diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rfcal/vcxo-manual/Makefile	Wed Apr 12 06:45:45 2017 +0000
@@ -0,0 +1,18 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	fc-vcxo-linear
+INSTBIN=/opt/freecalypso/bin
+
+LINEAR_OBJS=	linear.o readmeas.o
+
+all:	${PROGS}
+
+fc-vcxo-linear:	${LINEAR_OBJS}
+	${CC} ${CFLAGS} -o $@ ${LINEAR_OBJS}
+
+install:
+	mkdir -p ${INSTBIN}
+	install -c ${PROGS} ${INSTBIN}
+
+clean:
+	rm -f *.o *.out *errs ${PROGS}