Browse Source

Create SDK before main dist

tags/v0.6.1
Andrew Belt 6 years ago
parent
commit
256fa27680
1 changed files with 15 additions and 13 deletions
  1. +15
    -13
      Makefile

+ 15
- 13
Makefile View File

@@ -89,7 +89,21 @@ endif
# This target is not intended for public use
dist: all
rm -rf dist
# Rack distribution
mkdir -p dist

# Rack SDK
mkdir -p dist/Rack-SDK
cp LICENSE* dist/Rack-SDK/
cp *.mk dist/Rack-SDK/
cp -R include dist/Rack-SDK/
mkdir -p dist/Rack-SDK/dep/
cp -R dep/include dist/Rack-SDK/dep/
ifdef ARCH_WIN
cp libRack.a dist/Rack-SDK/
endif
cd dist && zip -5 -r Rack-SDK-$(VERSION).zip Rack-SDK

# Rack
$(MAKE) -C plugins/Fundamental dist

ifdef ARCH_MAC
@@ -145,18 +159,6 @@ ifdef ARCH_LIN
cd dist && zip -5 -r Rack-$(VERSION)-$(ARCH).zip Rack
endif

# Rack SDK distribution
mkdir -p dist/Rack-SDK
cp LICENSE* dist/Rack-SDK/
cp *.mk dist/Rack-SDK/
cp -R include dist/Rack-SDK/
mkdir -p dist/Rack-SDK/dep/
cp -R dep/include dist/Rack-SDK/dep/
ifdef ARCH_WIN
cp libRack.a dist/Rack-SDK/
endif
cd dist && zip -5 -r Rack-SDK-$(VERSION).zip Rack-SDK


# Obviously this will only work if you have the private keys to my server
UPLOAD_URL := vortico@vcvrack.com:files/


Loading…
Cancel
Save