FreeCalypso > hg > gsm-net-reveng
annotate pathloss/Makefile @ 72:afebef67e8d4
tmo/CSD-tests: document Experiment 7
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Thu, 28 Nov 2024 02:53:59 +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} | 
