FreeCalypso > hg > gsm-net-reveng
annotate utils/Makefile @ 69:cf60172895fe default tip
pathloss: add sysmo-example-10w
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 25 Oct 2024 16:26:26 +0000 |
parents | ffbbce856ac7 |
children |
rev | line source |
---|---|
61
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 PROGS= gen-hex-lines |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 all: ${PROGS} |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 gen-hex-lines: gen-hex-lines.c |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 ${CC} ${CFLAGS} -o $@ $@.c |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 clean: |
ffbbce856ac7
utils/gen-hex-lines: import from vband-misc repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 rm -f *.o ${PROGS} |