From: Andre Noll Date: Mon, 9 Apr 2012 23:43:38 +0000 (+0200) Subject: command_util: Fix make dependencies for *_command_list.h. X-Git-Tag: v0.4.11~10^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=b4aff843b86a85c8d1f99452aa565a7917d7333a command_util: Fix make dependencies for *_command_list.h. The *_command_list.h files depend on the .c files listed in the SF header line of the .cmd command file because command_util.sh gets the declaration of the command handlers from these files. Unfortunately, make does not know about these dependencies, so we have to mention them in the Makefile as well. --- diff --git a/Makefile.in b/Makefile.in index 88d15932..868cfeac 100644 --- a/Makefile.in +++ b/Makefile.in @@ -119,17 +119,21 @@ $(subst p,P,$(subst q,Q,$(subst r,R,$(subst s,S,$(subst t,T,\ $(subst u,U,$(subst v,V,$(subst w,W,$(subst x,X,$(subst y,Y,\ $(subst z,Z,$1)))))))))))))))))))))))))) -%_command_list.h: %.cmd +%_command_list.h: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.sh h < $< >$@ -%_command_list.man: %.cmd +%_command_list.man: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.sh man < $< > $@ -%_completion.h: %.cmd +%_completion.h: %.cmd %.c @[ -z "$(Q)" ] || echo 'GEN $@' $(Q) ./command_util.sh compl $(strip $(call TOUPPER,$(*F)))_COMPLETERS \ $(strip $(call TOUPPER,$(*F)))_COMMANDS < $< > $@ +server_command_list.h server_command_list.man server_completion.h: command.c +afs_command_list.h afs_command_list.man afs_completion.h: afs.c aft.c attribute.c +audiod_command_list.h audiod_command_list.man audiod_completion.h: audiod_command.c + server_command_lists_man = server_command_list.man afs_command_list.man man/man1/para_server.1: para_server $(server_command_lists_man) | $(man_dir) @[ -z "$(Q)" ] || echo 'MAN $<'