view tsid-test/Makefile @ 124:9f09a7c3607a

fc-rfcal-txband: level error tolerance tightened to 0.75 dB
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 12 Jan 2019 20:15:17 +0000
parents bd62be88259d
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-tsid-shell
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

fc-tsid-shell:	fc-tsid-shell.c
	${CC} ${CFLAGS} -o $@ $@.c

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f *.o *.out *errs ${PROGS}