Browse Source

Merge pull request #3 from VCVRack/make-mflags

Add MFLAGS to pass make options to Docker build.
master
Andrew Belt GitHub 3 years ago
parent
commit
77422ab731
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      Makefile

+ 4
- 4
Makefile View File

@@ -196,19 +196,19 @@ docker-run:

docker-plugin-build-mac:
mkdir -p $(PLUGIN_BUILD_DIR)
$(DOCKER_RUN) -c "$(MAKE) plugin-build-mac"
$(DOCKER_RUN) -c "$(MAKE) plugin-build-mac $(MFLAGS)"

docker-plugin-build-win:
mkdir -p $(PLUGIN_BUILD_DIR)
$(DOCKER_RUN) -c "$(MAKE) plugin-build-win"
$(DOCKER_RUN) -c "$(MAKE) plugin-build-win $(MFLAGS)"

docker-plugin-build-lin:
mkdir -p $(PLUGIN_BUILD_DIR)
$(DOCKER_RUN) -c "$(MAKE) plugin-build-lin"
$(DOCKER_RUN) -c "$(MAKE) plugin-build-lin $(MFLAGS)"

docker-plugin-build:
mkdir -p $(PLUGIN_BUILD_DIR)
$(DOCKER_RUN) -c "$(MAKE) plugin-build"
$(DOCKER_RUN) -c "$(MAKE) plugin-build $(MFLAGS)"


.NOTPARALLEL:


Loading…
Cancel
Save