From 8d6dccd5458a77de232d1ebdb1d1d883e09747f6 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 24 Mar 2018 01:14:58 -0400 Subject: [PATCH] Tweak README --- README.md | 4 ++-- dep.mk | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) 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