FreeCalypso > hg > fc-rfcal-tools
diff autocal/Makefile @ 22:e8bcead3aa9b
autocal: started linking fc-rfcal-vcxo
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 May 2017 21:01:29 +0000 |
parents | a3f48378658d |
children | 0b6881281d86 |
line wrap: on
line diff
--- 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