FreeCalypso > hg > ueda-linux
comparison ueda/mclutils/Makefile @ 81:6e43956e740d
beginning of BOM utils refactoring: seqrefdes code factored out
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 23 Feb 2017 19:15:48 +0000 |
parents | d098f8548b44 |
children | 88cdef7e6b1b |
comparison
equal
deleted
inserted
replaced
80:df98a82b807e | 81:6e43956e740d |
---|---|
4 LIBUEDA=../libueda/libueda.a | 4 LIBUEDA=../libueda/libueda.a |
5 BINDIR= /usr/local/bin | 5 BINDIR= /usr/local/bin |
6 | 6 |
7 all: ${PROGS} | 7 all: ${PROGS} |
8 | 8 |
9 ${PROGS}: ${LIBUEDA} | 9 getfps: getfps.o ${LIBUEDA} |
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUEDA} | |
11 | |
12 mkbom: mkbom.o seqrefdes.o ${LIBUEDA} | |
13 ${CC} ${CFLAGS} -o $@ $@.o seqrefdes.o ${LIBUEDA} | |
14 | |
15 shortbom: shortbom.o ${LIBUEDA} | |
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUEDA} | 16 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUEDA} |
11 | 17 |
12 install: | 18 install: |
13 install -c -o bin -g bin -m 755 getfps ${BINDIR}/ueda-getfps | 19 install -c -o bin -g bin -m 755 getfps ${BINDIR}/ueda-getfps |
14 install -c -o bin -g bin -m 755 mkbom ${BINDIR}/ueda-mkbom | 20 install -c -o bin -g bin -m 755 mkbom ${BINDIR}/ueda-mkbom |
15 install -c -o bin -g bin -m 755 shortbom ${BINDIR}/ueda-shortbom | 21 install -c -o bin -g bin -m 755 shortbom ${BINDIR}/ueda-shortbom |
16 | 22 |
17 clean: | 23 clean: |
18 rm -f *.[ao] a.out core errs ${PROGS} | 24 rm -f *.[ao] a.out core errs ${PROGS} |
19 | |
20 getfps: getfps.o | |
21 mkbom: mkbom.o | |
22 shortbom: shortbom.o |