FreeCalypso > hg > ueda-linux
comparison 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 | 
   comparison
  equal
  deleted
  inserted
  replaced
| -1:000000000000 | 0:cd92449fdb51 | 
|---|---|
| 1 CFLAGS= -O | |
| 2 PROGS= getfps mkbom shortbom | |
| 3 LIBUEDA=../libueda/libueda.a | |
| 4 BINDIR= /usr/local | |
| 5 | |
| 6 all: ${PROGS} | |
| 7 | |
| 8 ${PROGS}: ${LIBUEDA} | |
| 9 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUEDA} | |
| 10 | |
| 11 install: | |
| 12 install -c -o bin -g bin -m 755 getfps ${BINDIR}/ueda-getfps | |
| 13 install -c -o bin -g bin -m 755 mkbom ${BINDIR}/ueda-mkbom | |
| 14 install -c -o bin -g bin -m 755 shortbom ${BINDIR}/ueda-shortbom | |
| 15 | |
| 16 clean: | |
| 17 rm -f *.[ao] a.out core errs ${PROGS} | |
| 18 | |
| 19 getfps: getfps.o | |
| 20 mkbom: mkbom.o | |
| 21 shortbom: shortbom.o | 
