summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3a1c041
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
+### Environment constants
+
+ARCH ?=
+CROSS_COMPILE ?=
+export
+
+### general build targets
+
+all:
+ $(MAKE) all -e -C libloragw
+ $(MAKE) all -e -C util_pkt_logger
+ $(MAKE) all -e -C util_spi_stress
+ $(MAKE) all -e -C util_tx_test
+ $(MAKE) all -e -C util_lbt_test
+ $(MAKE) all -e -C util_tx_continuous
+ $(MAKE) all -e -C util_spectral_scan
+
+clean:
+ $(MAKE) clean -e -C libloragw
+ $(MAKE) clean -e -C util_pkt_logger
+ $(MAKE) clean -e -C util_spi_stress
+ $(MAKE) clean -e -C util_tx_test
+ $(MAKE) clean -e -C util_lbt_test
+ $(MAKE) clean -e -C util_tx_continuous
+ $(MAKE) clean -e -C util_spectral_scan
+
+### EOF