Makefile: Add module target for building single modules

This commit is contained in:
Andrew Eikum 2019-02-05 10:04:53 -06:00
parent 0ecb100046
commit 8f7f909dd4
2 changed files with 25 additions and 3 deletions

View file

@ -364,6 +364,17 @@ install: dist | $(filter-out dist deploy install,$(MAKECMDGOALS))
@echo "Installed Proton to "$(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME)
@echo "You may need to restart Steam to select this tool"
.PHONY: module32 module64 module
module32: SHELL = $(CONTAINER_SHELL32)
module32:
cd $(WINE_OBJ32)/dlls/$(module) && make
module64: SHELL = $(CONTAINER_SHELL64)
module64:
cd $(WINE_OBJ64)/dlls/$(module) && make
module: module32 module64
##
## ffmpeg