FreeCalypso > hg > gsm-net-reveng
annotate pathloss/Makefile @ 74:e78c6b1ecb91
trau-decode: refactor trau-hr-dump
The desire is to create a companion program that will read hex lines
representing TRAU-8k frames and then decode those frames in exactly
the same way how we currently decode frames read from binary capture
files. Hence the decoder portion of trau-hr-dump needs to be
factored out.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 08 Feb 2025 03:00:31 +0000 |
| parents | 0cfea66a15f3 |
| children |
| rev | line source |
|---|---|
|
65
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 PROG= pathloss |
|
68
0cfea66a15f3
pathloss: implement Egli model
Mychaela Falconia <falcon@freecalypso.org>
parents:
66
diff
changeset
|
4 OBJS= egli.o fsl.o main.o |
|
0cfea66a15f3
pathloss: implement Egli model
Mychaela Falconia <falcon@freecalypso.org>
parents:
66
diff
changeset
|
5 HDRS= range_func.h |
|
65
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 all: ${PROG} |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 ${PROG}: ${OBJS} |
|
66
599fac1b882d
pathloss: implement FSL
Mychaela Falconia <falcon@freecalypso.org>
parents:
65
diff
changeset
|
10 ${CC} -o $@ ${OBJS} -lm |
|
65
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
|
68
0cfea66a15f3
pathloss: implement Egli model
Mychaela Falconia <falcon@freecalypso.org>
parents:
66
diff
changeset
|
12 ${OBJS}: ${HDRS} |
|
0cfea66a15f3
pathloss: implement Egli model
Mychaela Falconia <falcon@freecalypso.org>
parents:
66
diff
changeset
|
13 |
|
65
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 clean: |
|
b3f04535eb14
pathloss: initial code, no distance calculation yet
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 rm -f *.o ${PROG} |
