FreeCalypso > hg > freecalypso-sw
view rvinterf/etmsync/Makefile @ 554:3a0ce0ea4035
gsm-fw/L1/tpudrv/tpudrv.h: Leonardo version replaced with LoCosto-based one;
l1dmacro_rx_nb() and l1dmacro_rx_cont() prototypes fixed not to include the
csf_filter_choice parameter in the Calypso configuration
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 04 Aug 2014 04:57:24 +0000 |
parents | cd5068cf0551 |
children | 42719fa3e6af |
line wrap: on
line source
CC= gcc CFLAGS= -O2 -I../include PROGS= fc-fsio INSTBIN=/usr/local/bin FSIO_OBJS= connect.o dispatch.o fdcmd.o fileio.o fsbasics.o fscmdtab.o \ fserr.o fsiomain.o fsmisc.o fspath.o fsread.o fsupload.o \ fswrite.o interf.o launchrvif.o symlink.o all: ${PROGS} fc-fsio: ${FSIO_OBJS} ${CC} ${CFLAGS} -o $@ ${FSIO_OBJS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}