Browse Source

Tweak README

tags/v0.6.0
Andrew Belt 6 years ago
parent
commit
8d6dccd545
2 changed files with 7 additions and 2 deletions
  1. +2
    -2
      README.md
  2. +5
    -0
      dep.mk

+ 2
- 2
README.md View File

@@ -38,7 +38,7 @@ pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake autocon


On Arch Linux: On Arch Linux:
``` ```
pacman -S git gcc make cmake tar unzip curl
pacman -S git gcc make cmake tar unzip zip curl
``` ```


Other distro build instructions coming soon. Other distro build instructions coming soon.
@@ -51,7 +51,7 @@ Clone this repository with `git clone https://github.com/VCVRack/Rack.git` and `
Make sure there are no spaces in your path, as this breaks many build systems. Make sure there are no spaces in your path, as this breaks many build systems.


The `master` branch contains the latest public code and breaks its plugin [API](https://en.wikipedia.org/wiki/Application_programming_interface) and [ABI](https://en.wikipedia.org/wiki/Application_binary_interface) frequently. The `master` branch contains the latest public code and breaks its plugin [API](https://en.wikipedia.org/wiki/Application_programming_interface) and [ABI](https://en.wikipedia.org/wiki/Application_binary_interface) frequently.
If you wish to build a previous version of Rack which is API/ABI-compatible with an official Rack release, check out the desired branch with `git checkout v0.5` for example.
If you wish to build a version of Rack which is API/ABI-compatible with an official Rack release, check out the desired branch with `git checkout v0.5` for example.


Clone submodules. Clone submodules.




+ 5
- 0
dep.mk View File

@@ -28,5 +28,10 @@ $(DEPS): export CXXFLAGS = $(DEP_CXXFLAGS)
$(DEPS): export LDFLAGS = $(DEP_LDFLAGS) $(DEPS): export LDFLAGS = $(DEP_LDFLAGS)


dep: $(DEPS) dep: $(DEPS)
@echo
@echo "#######################################"
@echo "# All dependencies built successfully #"
@echo "#######################################"
@echo


.PHONY: dep .PHONY: dep

Loading…
Cancel
Save