diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-10-08 11:23:35 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-10-08 11:23:35 +0200 |
commit | fd2ca634be7902b7b861fea8d51bf5b3aac4ad36 (patch) | |
tree | 74e90f8a785e4efd951b3cdd498b4208cda5d512 | |
parent | 6cff0aab5313ab66c71074ef8eedaecd6a6e2115 (diff) | |
download | pianobar-fd2ca634be7902b7b861fea8d51bf5b3aac4ad36.tar.gz pianobar-fd2ca634be7902b7b861fea8d51bf5b3aac4ad36.tar.bz2 pianobar-fd2ca634be7902b7b861fea8d51bf5b3aac4ad36.zip |
Makefile uses GNU make extension => gmake
-rw-r--r-- | INSTALL | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -4,7 +4,7 @@ Install Dependencies ------------ -make +gmake libao http://www.xiph.org/ao/ libfaad2 http://www.audiocoding.com/downloads.html AND/OR libmad http://www.underbit.com/products/mad/ @@ -16,7 +16,7 @@ Building If you have all of the dependencies listed above just type - make clean && make + gmake clean && gmake You can run the client directly from the source directory now @@ -24,18 +24,18 @@ You can run the client directly from the source directory now Or install it by issuing - make install + gmake install In case you don't want to install libmad OR libfaad you probably want to disable one of them: - make clean && make DISABLE_FAAD=1 + gmake clean && gmake DISABLE_FAAD=1 or - make clean && make DISABLE_MAD=1 + gmake clean && gmake DISABLE_MAD=1 libpiano can be built and installed by running - make clean && make libpiano && make install-libpiano + gmake clean && gmake libpiano && gmake install-libpiano |