Host driver/HAL to build a LoRa Picocell Gateway which communicates through USB with a concentrator board based on Semtech SX1308 multi-channel modem and SX1257/SX1255 RF transceivers.

Revision:
0:102b50f941d0
diff -r 000000000000 -r 102b50f941d0 Makefile
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Wed Apr 11 14:38:42 2018 +0000
@@ -0,0 +1,27 @@
+### Environment constants 
+
+ARCH ?=
+CROSS_COMPILE ?=
+export
+
+### general build targets
+
+all:
+	$(MAKE) all -e -C libloragw
+	$(MAKE) all -e -C util_boot
+	$(MAKE) all -e -C util_chip_id
+	$(MAKE) all -e -C util_pkt_logger
+	$(MAKE) all -e -C util_com_stress
+	$(MAKE) all -e -C util_tx_test
+	$(MAKE) all -e -C util_tx_continuous
+
+clean:
+	$(MAKE) clean -e -C libloragw
+	$(MAKE) clean -e -C util_boot
+	$(MAKE) clean -e -C util_chip_id
+	$(MAKE) clean -e -C util_pkt_logger
+	$(MAKE) clean -e -C util_com_stress
+	$(MAKE) clean -e -C util_tx_test
+	$(MAKE) clean -e -C util_tx_continuous
+
+### EOF