summaryrefslogtreecommitdiff
path: root/util_tx_test/Makefile
diff options
context:
space:
mode:
authorSylvain Miermont <smiermont@semtech.com>2014-05-15 13:09:47 +0200
committerSylvain Miermont <smiermont@semtech.com>2014-05-15 13:09:47 +0200
commit3f22bb77f120f27fad71b6c47d4eb17936fc42a7 (patch)
treee73789fb025ac2d9e14663781271ef8034906c02 /util_tx_test/Makefile
parentf991b0e35ad1bd3b999c70e68c518bae91bd36a6 (diff)
downloadlora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.tar.gz
lora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.tar.bz2
lora_gateway-3f22bb77f120f27fad71b6c47d4eb17936fc42a7.zip
v1.4.0v1.4.0
- Added calibration routine to optimize RF performance - Added support for SX1301 433 MHz reference board - Improved AGC firmware - Improved RSSI accuracy - Improved utilities Makefile
Diffstat (limited to 'util_tx_test/Makefile')
-rw-r--r--util_tx_test/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/util_tx_test/Makefile b/util_tx_test/Makefile
index 2c457e7..f1b50a8 100644
--- a/util_tx_test/Makefile
+++ b/util_tx_test/Makefile
@@ -42,10 +42,17 @@ clean:
rm -f obj/*.o
rm -f $(APP_NAME)
-### HAL library
+### HAL library (do no force multiple library rebuild even with 'make -B')
+
+$(LGW_PATH)/inc/config.h:
+ @if test ! -f $@; then \
+ $(MAKE) all -C $(LGW_PATH); \
+ fi
$(LGW_PATH)/libloragw.a: $(LGW_INC)
- $(MAKE) all -C $(LGW_PATH)
+ @if test ! -f $@; then \
+ $(MAKE) all -C $(LGW_PATH); \
+ fi
### Main program compilation and assembly