FreeCalypso > hg > freecalypso-sw
view miscutil/Makefile @ 325:ffb0442ffccf
gsm-fw/gpf/tst_drv: got as far as compiling tr2.c
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Sat, 19 Apr 2014 00:18:44 +0000 | 
| parents | cd043e690621 | 
| children | 3822f3b198d4 | 
line wrap: on
 line source
CC= gcc CFLAGS= -O2 PROGS= imei-luhn INSTBIN=/usr/local/bin all: ${PROGS} ${PROGS}: ${CC} ${CFLAGS} -o $@ $@.c imei-luhn: imei-luhn.c install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out
