FreeCalypso > hg > ueda-linux
annotate netdiff/convert/Makefile @ 132:31ae8105aaa0
netdiff project started with protel2donl
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 06 Sep 2020 22:48:09 +0000 |
parents | |
children | ab7b9f01ac6a |
rev | line source |
---|---|
132
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 PROGS= protel2donl |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 BINDIR= /usr/local/bin |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 all: ${PROGS} |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 ${PROGS}: |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 ${CC} ${CFLAGS} -o $@ $@.c |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 install: |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 install -c -o bin -g bin -m 755 ${PROGS} ${BINDIR} |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 clean: |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 rm -f *.[ao] a.out core errs ${PROGS} |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 |
31ae8105aaa0
netdiff project started with protel2donl
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 protel2donl: protel2donl.c |