summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5afee5d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+### Environment constants
+
+CROSS_COMPILE :=
+export
+
+### general build targets
+
+all:
+ $(MAKE) all -e -C libloragw
+ $(MAKE) all -e -C util_band_survey
+ $(MAKE) all -e -C util_pkt_logger
+ $(MAKE) all -e -C util_spi_stress
+ $(MAKE) all -e -C util_tx_test
+
+clean:
+ $(MAKE) clean -e -C libloragw
+ $(MAKE) clean -e -C util_band_survey
+ $(MAKE) clean -e -C util_pkt_logger
+ $(MAKE) clean -e -C util_spi_stress
+ $(MAKE) clean -e -C util_tx_test
+
+### EOF \ No newline at end of file