FreeCalypso > hg > freecalypso-sw
view miscutil/Makefile @ 543:2dccd2b4e5a2
gsm-fw/L1/cust0/Makefile: forgot -mthumb for l1_cust_xip.o
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 05:36:56 +0000 |
parents | 3822f3b198d4 |
children | 813287f7169c |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fc-serterm imei-luhn INSTBIN=/usr/local/bin all: ${PROGS} SERTERM_OBJS= fc-serterm.o openport.o ttypassthru.o fc-serterm: ${SERTERM_OBJS} ${CC} ${CFLAGS} -o $@ ${SERTERM_OBJS} ttypassthru.o: ../loadtools/ttypassthru.c ${CC} ${CFLAGS} -c -o $@ $< imei-luhn: imei-luhn.c ${CC} ${CFLAGS} -o $@ $@.c install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out