From: Andre Noll Date: Wed, 2 Sep 2015 22:26:06 +0000 (+0200) Subject: build: Completion headers no longer depend .c file. X-Git-Tag: v0.5.6~103 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=b1dbdcac78933ebb80eb84ba652d47330758e85b build: Completion headers no longer depend .c file. Due to commit 6aea41e6 (command_util.bash: Kill make_proto()) this dependency can be dropped. --- diff --git a/Makefile.real b/Makefile.real index faa6d2af..29beddeb 100644 --- a/Makefile.real +++ b/Makefile.real @@ -132,7 +132,7 @@ $(cmdlist_dir)/%.command_list.h: %.cmd %.c | $(cmdlist_dir) $(cmdlist_dir)/%.command_list.man: %.cmd %.c | $(cmdlist_dir) @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.bash man < $< > $@ -$(cmdlist_dir)/%.completion.h: %.cmd %.c | $(cmdlist_dir) +$(cmdlist_dir)/%.completion.h: %.cmd | $(cmdlist_dir) @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.bash compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \ $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@