diff ueda/mclutils/Makefile @ 0:cd92449fdb51

initial import of ueda and ifctf-part-lib from ifctfvax CVS
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 20 Jul 2015 00:24:37 +0000
parents
children d098f8548b44
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ueda/mclutils/Makefile	Mon Jul 20 00:24:37 2015 +0000
@@ -0,0 +1,21 @@
+CFLAGS=	-O
+PROGS=	getfps mkbom shortbom
+LIBUEDA=../libueda/libueda.a
+BINDIR=	/usr/local
+
+all:	${PROGS}
+
+${PROGS}:	${LIBUEDA}
+	${CC} ${CFLAGS} -o $@ $@.o ${LIBUEDA}
+
+install:
+	install -c -o bin -g bin -m 755 getfps ${BINDIR}/ueda-getfps
+	install -c -o bin -g bin -m 755 mkbom ${BINDIR}/ueda-mkbom
+	install -c -o bin -g bin -m 755 shortbom ${BINDIR}/ueda-shortbom
+
+clean:
+	rm -f *.[ao] a.out core errs ${PROGS}
+
+getfps:	getfps.o
+mkbom:	mkbom.o
+shortbom: shortbom.o