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