FreeCalypso > hg > freecalypso-sw
view rvinterf/old/sendsp/Makefile @ 988:0654212e5c53
doc/Compal-unlock: documented safe flashing of newer fw versions and
cisversion unlocking
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 12 Dec 2015 18:40:56 +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}