view ueda/utils/Makefile @ 1:e2130f1ef720

ueda/utils Linuxified
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 20 Jul 2015 00:30:24 +0000
parents cd92449fdb51
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	cutelements instfileelem
BINDIR=	/usr/local/bin

all:	${PROGS}

${PROGS}:
	${CC} ${CFLAGS} -o $@ $@.c

install:
	install -c -o bin -g bin -m 755 cutelements ${BINDIR}/ueda-cutelements
	install -c -o bin -g bin -m 755 instfileelem ${BINDIR}/ueda-instfileelem
	install -c -o bin -g bin -m 755 runm4.sh ${BINDIR}/ueda-runm4

clean:
	rm -f *.[ao] a.out core errs ${PROGS}

cutelements: cutelements.c
instfileelem: instfileelem.c