view miscutil/Makefile @ 369:e2a05eb3129f

OSL: the bogus event group code appears to be unused aside from the os_EvGrpInit() call in os_Initialize(), so let's table it aside for now, and thus spare the boatload of compiler warnings.
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 29 May 2014 06:41:52 +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