view tsid-test/Makefile @ 69:4e263849b064

fc-cmu200d: CMU200 external attenuation setting implemented in signal gen mode
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Jul 2017 04:52:03 +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}