view miscutil/Makefile @ 311:a2194416fd7c
gsm-fw: preparations for ARM exception handling (DAR disabled for now)
author |
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
date |
Mon, 17 Mar 2014 07:10:57 +0000 (2014-03-17) |
parents |
cd043e690621 |
children |
3822f3b198d4 |
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