FreeCalypso > hg > freecalypso-sw
view rvinterf/ctracedec/Makefile @ 887:7f305eb3c530
gsm-fw: tpudrv12.[ch] extended to support Pirelli DP-L10 target
Pirelli ramImage compiles, not tested on hw yet
compiled code unchanged in the gtamodem configuration (verified)
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 28 Jun 2015 08:15:10 +0000 |
parents | d32dff865575 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= ctracedec OBJS= decode.o doprnt.o main.o processlog.o readtab.o INSTBIN=/usr/local/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROG}