FreeCalypso > hg > fc-rfcal-tools
diff autocal/Makefile @ 56:df827df6db82
fc-rfcal-txbasis written, ready to test
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 27 May 2017 20:02:10 +0000 |
parents | 21f6dba5c4df |
children | 2588f9eed11a |
line wrap: on
line diff
--- a/autocal/Makefile Sat May 27 19:44:08 2017 +0000 +++ b/autocal/Makefile Sat May 27 20:02:10 2017 +0000 @@ -1,11 +1,13 @@ CC= gcc CFLAGS= -O2 -I/opt/freecalypso/include -PROGS= fc-rfcal-gmagic fc-rfcal-txcheck fc-rfcal-vcxo +PROGS= fc-rfcal-gmagic fc-rfcal-txbasis fc-rfcal-txcheck fc-rfcal-vcxo INSTBIN=/opt/freecalypso/bin GMAGIC_OBJS= gmagicmain.o l1meas.o l1tmops.o rvinterf.o rxcommon.o \ sockopts.o tsidsock.o +TXBASIS_OBJS= l1tmops.o rvinterf.o tsidsock.o txbasis.o txpwrmeas.o + TXCHECK_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o txchkmain.o \ txpwrmeas.o @@ -16,6 +18,9 @@ fc-rfcal-gmagic: ${GMAGIC_OBJS} ${CC} -o $@ ${GMAGIC_OBJS} +fc-rfcal-txbasis: ${TXBASIS_OBJS} + ${CC} -o $@ ${TXBASIS_OBJS} + fc-rfcal-txcheck: ${TXCHECK_OBJS} ${CC} -o $@ ${TXCHECK_OBJS}