FreeCalypso > hg > fc-rfcal-tools
comparison autocal/Makefile @ 42:dcf7cd305e2b
fc-rfcal-gmagic started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 27 May 2017 05:04:14 +0000 |
parents | ea1d9f7f625f |
children | 5018fd8eecce |
comparison
equal
deleted
inserted
replaced
41:3f4221ef916a | 42:dcf7cd305e2b |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 -I/opt/freecalypso/include | 2 CFLAGS= -O2 -I/opt/freecalypso/include |
3 PROGS= fc-rfcal-vcxo | 3 PROGS= fc-rfcal-gmagic fc-rfcal-vcxo |
4 INSTBIN=/opt/freecalypso/bin | 4 INSTBIN=/opt/freecalypso/bin |
5 | 5 |
6 GMAGIC_OBJS= gmagicmain.o l1tmops.o rvinterf.o sockopts.o tsidsock.o | |
6 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o | 7 VCXO_OBJS= l1tmops.o rvinterf.o sockopts.o tsidsock.o vcxomain.o vcxomeas.o |
7 | 8 |
8 all: ${PROGS} | 9 all: ${PROGS} |
10 | |
11 fc-rfcal-gmagic: ${GMAGIC_OBJS} | |
12 ${CC} -o $@ ${GMAGIC_OBJS} | |
9 | 13 |
10 fc-rfcal-vcxo: ${VCXO_OBJS} | 14 fc-rfcal-vcxo: ${VCXO_OBJS} |
11 ${CC} -o $@ ${VCXO_OBJS} | 15 ${CC} -o $@ ${VCXO_OBJS} |
12 | 16 |
13 install: | 17 install: |