A LoRa packet forwarder running on the host of a LoRa Picocell Gateway that forwards RF packets receive by the concentrator to a server through a IP/UDP link, and emits RF packets that are sent by the server.
Makefile@0:9002b89157da, 2018-04-11 (annotated)
- Committer:
- dgabino
- Date:
- Wed Apr 11 14:47:16 2018 +0000
- Revision:
- 0:9002b89157da
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dgabino | 0:9002b89157da | 1 | ### Environment constants |
dgabino | 0:9002b89157da | 2 | |
dgabino | 0:9002b89157da | 3 | LGW_PATH ?= ../../picoGW_hal/libloragw |
dgabino | 0:9002b89157da | 4 | ARCH ?= |
dgabino | 0:9002b89157da | 5 | CROSS_COMPILE ?= |
dgabino | 0:9002b89157da | 6 | export |
dgabino | 0:9002b89157da | 7 | |
dgabino | 0:9002b89157da | 8 | ### general build targets |
dgabino | 0:9002b89157da | 9 | |
dgabino | 0:9002b89157da | 10 | all: |
dgabino | 0:9002b89157da | 11 | $(MAKE) all -e -C lora_pkt_fwd |
dgabino | 0:9002b89157da | 12 | $(MAKE) all -e -C util_ack |
dgabino | 0:9002b89157da | 13 | $(MAKE) all -e -C util_sink |
dgabino | 0:9002b89157da | 14 | $(MAKE) all -e -C util_tx_test |
dgabino | 0:9002b89157da | 15 | |
dgabino | 0:9002b89157da | 16 | clean: |
dgabino | 0:9002b89157da | 17 | $(MAKE) clean -e -C lora_pkt_fwd |
dgabino | 0:9002b89157da | 18 | $(MAKE) clean -e -C util_ack |
dgabino | 0:9002b89157da | 19 | $(MAKE) clean -e -C util_sink |
dgabino | 0:9002b89157da | 20 | $(MAKE) clean -e -C util_tx_test |
dgabino | 0:9002b89157da | 21 | |
dgabino | 0:9002b89157da | 22 | ### EOF |