Browse Source

Make Rack SDK platform-dependent

tags/v0.6.2
Andrew Belt 6 years ago
parent
commit
37f72969f3
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      Makefile

+ 3
- 4
Makefile View File

@@ -102,7 +102,7 @@ dist: all
ifdef ARCH_WIN ifdef ARCH_WIN
cp libRack.a dist/Rack-SDK/ cp libRack.a dist/Rack-SDK/
endif endif
cd dist && zip -5 -r Rack-SDK-$(VERSION).zip Rack-SDK
cd dist && zip -5 -r Rack-SDK-$(VERSION)-$(ARCH).zip Rack-SDK


# Rack # Rack
$(MAKE) -C plugins/Fundamental dist $(MAKE) -C plugins/Fundamental dist
@@ -165,11 +165,10 @@ endif
UPLOAD_URL := vortico@vcvrack.com:files/ UPLOAD_URL := vortico@vcvrack.com:files/
upload: upload:
ifdef ARCH_MAC ifdef ARCH_MAC
rsync dist/*.dmg $(UPLOAD_URL) -zP
rsync dist/*.{dmg,zip} $(UPLOAD_URL) -zP
endif endif
ifdef ARCH_WIN ifdef ARCH_WIN
rsync dist/*.exe $(UPLOAD_URL) -P
rsync dist/*.zip $(UPLOAD_URL) -P
rsync dist/*.{exe,zip} $(UPLOAD_URL) -P
endif endif
ifdef ARCH_LIN ifdef ARCH_LIN
rsync dist/*.zip $(UPLOAD_URL) -zP rsync dist/*.zip $(UPLOAD_URL) -zP


Loading…
Cancel
Save