view rvinterf/old/sendsp/Makefile @ 1006:6e1fcffd3266

gsm-fw/riviera/rvt channel addition: missed the bit in rvt_task.c
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Sun, 20 Mar 2016 18:58:07 +0000
parents 373af5f74e39
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2 -I../include
PROGS=	fc-sendsp
INSTBIN=/usr/local/bin

SENDSP_OBJS=	rvifsend.o sendsp.o

all:	${PROGS}

fc-sendsp:	${SENDSP_OBJS}
	${CC} ${CFLAGS} -o $@ ${SENDSP_OBJS}

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

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