From 2e9e59bf59c3a5cb3d525b72f4b0cc0d9be2e9cc Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 4 Feb 2019 15:46:45 -0600 Subject: [PATCH] makefile: Add dependencies to dist target --- build/makefile_base.mak | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/build/makefile_base.mak b/build/makefile_base.mak index ceb05669..f8ad5337 100644 --- a/build/makefile_base.mak +++ b/build/makefile_base.mak @@ -330,9 +330,7 @@ $(DIST_FONTS): fonts ALL_TARGETS += dist GOAL_TARGETS += dist -# Only drag in WINE_OUT if they need to be built at all, otherwise this doesn't imply a rebuild of wine. If wine is in -# the explicit targets, specify that this should occur after. -dist: $(DIST_TARGETS) | $(WINE_OUT) $(filter $(MAKECMDGOALS),wine64 wine32 wine) $(DST_DIR) +dist: $(DIST_TARGETS) wine vrclient lsteamclient dxvk | $(DST_DIR) echo `date '+%s'` `GIT_DIR=$(abspath $(SRCDIR)/.git) git describe --tags` > $(DIST_VERSION) cp $(DIST_VERSION) $(DST_BASE)/ rm -rf $(abspath $(DIST_PREFIX)) && \ @@ -645,7 +643,7 @@ WINE32_MAKE_ARGS := \ # 64bit-configure $(WINE_CONFIGURE_FILES64): SHELL = $(CONTAINER_SHELL64) -$(WINE_CONFIGURE_FILES64): $(MAKEFILE_DEP) | $(WINE_OBJ64) +$(WINE_CONFIGURE_FILES64): $(MAKEFILE_DEP) | faudio64 $(WINE_OBJ64) cd $(dir $@) && \ STRIP=$(STRIP_QUOTED) \ CFLAGS="-I$(abspath $(TOOLS_DIR64))/include -I$(abspath $(SRCDIR))/contrib/include -g $(COMMON_FLAGS)" \ @@ -660,7 +658,7 @@ $(WINE_CONFIGURE_FILES64): $(MAKEFILE_DEP) | $(WINE_OBJ64) # 32-bit configure $(WINE_CONFIGURE_FILES32): SHELL = $(CONTAINER_SHELL32) -$(WINE_CONFIGURE_FILES32): $(MAKEFILE_DEP) | $(WINE_OBJ32) $(WINE_ORDER_DEPS32) +$(WINE_CONFIGURE_FILES32): $(MAKEFILE_DEP) | faudio32 $(WINE_OBJ32) cd $(dir $@) && \ STRIP=$(STRIP_QUOTED) \ CFLAGS="-I$(abspath $(TOOLS_DIR32))/include -I$(abspath $(SRCDIR))/contrib/include -g $(COMMON_FLAGS)" \