From 7800ba0dfb4db10268e948a78d4b36e8a4de9250 Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Fri, 21 Aug 2015 09:48:52 +0200 Subject: [PATCH] Removed $'s so one can copy and paste into terminal --- docs/install.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/install.md b/docs/install.md index 68f0d27..59e99b8 100644 --- a/docs/install.md +++ b/docs/install.md @@ -2,26 +2,26 @@ ## Debian/Ubuntu ``` -$ sudo apt-get install libclang-dev make cmake g++ git +sudo apt-get install libclang-dev make cmake g++ git ``` ``` -$ git clone https://github.com/cppit/libclangmm.git -$ cd libclangmm -$ cmake . -$ make -$ sudo make install +git clone https://github.com/cppit/libclangmm.git +cd libclangmm +cmake . +make +sudo make install ``` ## OS X with Homebrew (http://brew.sh/) ``` -$ brew install cmake --with-clang llvm +brew install cmake --with-clang llvm ``` ``` -$ git clone https://github.com/cppit/libclangmm.git -$ cd libclangmm -$ cmake . -$ make -$ make install +git clone https://github.com/cppit/libclangmm.git +cd libclangmm +cmake . +make +make install ```