diff --git a/README.md b/README.md index c3dd2689..5ad519b0 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake autocon 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. @@ -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. 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. diff --git a/dep.mk b/dep.mk index 8c462830..1ee1c7b4 100644 --- a/dep.mk +++ b/dep.mk @@ -28,5 +28,10 @@ $(DEPS): export CXXFLAGS = $(DEP_CXXFLAGS) $(DEPS): export LDFLAGS = $(DEP_LDFLAGS) dep: $(DEPS) + @echo + @echo "#######################################" + @echo "# All dependencies built successfully #" + @echo "#######################################" + @echo .PHONY: dep