summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHarsh Sharma <92harshsharma@gmail.com>2018-06-13 13:24:54 -0500
committerHarsh Sharma <92harshsharma@gmail.com>2018-06-13 13:24:54 -0500
commit7c383be1542368f2601015d9fc2a417197677677 (patch)
treebc06453f879cbadf65fd88123c506956403c5684 /Makefile
downloadlora_gateway_mtac_full-7c383be1542368f2601015d9fc2a417197677677.tar.gz
lora_gateway_mtac_full-7c383be1542368f2601015d9fc2a417197677677.tar.bz2
lora_gateway_mtac_full-7c383be1542368f2601015d9fc2a417197677677.zip
Initial Commit
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