FreeCalypso > hg > gsm-net-reveng
view pathloss/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 | 0cfea66a15f3 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= pathloss OBJS= egli.o fsl.o main.o HDRS= range_func.h all: ${PROG} ${PROG}: ${OBJS} ${CC} -o $@ ${OBJS} -lm ${OBJS}: ${HDRS} clean: rm -f *.o ${PROG}