From: Nathael Pajani Date: Wed, 19 Apr 2017 00:55:03 +0000 (+0200) Subject: Add a test in apps makefiles to get proper function of :make in vim when the user... X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=c0d1dea2d2dd2acefc4df5d33846a4597c395008;p=soft%2Flpc122x%2Fswd 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 --- diff --git a/remote_bitbang/Makefile b/remote_bitbang/Makefile index 954c63f..41ae555 100644 --- a/remote_bitbang/Makefile +++ b/remote_bitbang/Makefile @@ -1,13 +1,21 @@ -# Makefile for "base" apps -# This includes apps for the GPIO Demo Module and for the LPC1224-BO board. +# 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} $@