From 7c383be1542368f2601015d9fc2a417197677677 Mon Sep 17 00:00:00 2001 From: Harsh Sharma <92harshsharma@gmail.com> Date: Wed, 13 Jun 2018 13:24:54 -0500 Subject: Initial Commit --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3