view ffstools/tiaud/Makefile @ 190:2d9b1d69862d

doc: RF calibration documents/notes moved into RF-cal subdir
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Apr 2017 16:47:50 +0000
parents 959ff9f59568
children 2568a2a8a453
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	decomp
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

decomp:	decomp.c
	${CC} ${CFLAGS} -o $@ $@.c

install:	${PROGS}
	mkdir -p ${INSTBIN}
	install -c decomp ${INSTBIN}/tiaud-decomp

clean:
	rm -f ${PROGS}