# HG changeset patch # User Mychaela Falconia # Date 1495486889 0 # Node ID e8bcead3aa9baa64895485f424bf85a19b3d0aaf # Parent a3f48378658ddc32ad3488aa6496c5bcdd2fe09f autocal: started linking fc-rfcal-vcxo diff -r a3f48378658d -r e8bcead3aa9b .hgignore --- a/.hgignore Mon May 22 20:51:55 2017 +0000 +++ b/.hgignore Mon May 22 21:01:29 2017 +0000 @@ -2,8 +2,12 @@ \.[oa]$ +^autocal/fc-rfcal-vcxo$ + ^cmu200/fc-cmu200d$ ^cmu200/fc-serscpi$ + ^tsid-test/fc-tsid-shell$ + ^vcxo-manual/fc-vcxo-linear$ ^vcxo-manual/fc-vcxo-param$ diff -r a3f48378658d -r e8bcead3aa9b autocal/Makefile --- a/autocal/Makefile Mon May 22 20:51:55 2017 +0000 +++ b/autocal/Makefile Mon May 22 21:01:29 2017 +0000 @@ -1,8 +1,13 @@ CC= gcc CFLAGS= -O2 -I/opt/freecalypso/include -OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o +PROGS= fc-rfcal-vcxo + +VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o -all: ${OBJS} +all: ${PROGS} + +fc-rfcal-vcxo: ${VCXO_OBJS} + ${CC} -o $@ ${VCXO_OBJS} clean: rm -f *.o *.out *errs