FreeCalypso > hg > freecalypso-sw
view rvinterf/etm/Makefile @ 220:aa4ba71a1032
gsm-fw: FFS code hooked in, FFS-in-RAM config works on the Pirelli target
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 06 Jan 2014 20:50:33 +0000 |
parents | c9ea2f7441a5 |
children | c413e791595a |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fc-tmsh INSTBIN=/usr/local/bin TMSH_OBJS= abb.o etmbasic.o init.o interf.o launchrvif.o main.o pktsort.o \ tmcore.o ttymagic.o usercmd.o all: ${PROGS} fc-tmsh: ${TMSH_OBJS} ${CC} ${CFLAGS} -o $@ ${TMSH_OBJS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}