FreeCalypso > hg > freecalypso-sw
view rvinterf/old/sendsp/Makefile @ 1010:658fe6f1880f
rvinterf/lowlevel: handle TCH packet type in rvinterf and rvtdump
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 20 Mar 2016 20:35:17 +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}