From 6894c141950e4af89900299656606b551f35f634 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Wed, 19 Apr 2017 02:55:03 +0200 Subject: [PATCH] Add a test in apps makefiles to get proper function of :make in vim when the user has added "let $COMPILE_FROM_IDE = 1" to his ~/.vimrc --- transparent_bridge/Makefile | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/transparent_bridge/Makefile b/transparent_bridge/Makefile index 1df310e..41ae555 100644 --- a/transparent_bridge/Makefile +++ b/transparent_bridge/Makefile @@ -1,13 +1,21 @@ -# Makefile for "knx" apps -# This includes all apps for the KNX Module. +# Makefile for apps MODULE = $(shell basename $(shell cd .. && pwd && cd -)) NAME = $(shell basename $(CURDIR)) +# Add this to your ~/.vimrc in order to get proper function of :make in vim : +# let $COMPILE_FROM_IDE = 1 +ifeq ($(strip $(COMPILE_FROM_IDE)),) + PRINT_DIRECTORY = --no-print-directory +else + PRINT_DIRECTORY = + LANG = C +endif + .PHONY: $(NAME).bin $(NAME).bin: - @make -C ../../.. --no-print-directory NAME=$(NAME) MODULE=$(MODULE) apps/$(MODULE)/$(NAME)/$@ + @make -C ../../.. ${PRINT_DIRECTORY} NAME=$(NAME) MODULE=$(MODULE) apps/$(MODULE)/$(NAME)/$@ clean mrproper: - @make -C ../../.. --no-print-directory $@ + @make -C ../../.. ${PRINT_DIRECTORY} $@ -- 2.43.0