Browse Source

Create dep/ at root level of Makefile

tags/v0.6.0
Andrew Belt 7 years ago
parent
commit
aaf7473d0e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -11,11 +11,11 @@ libsamplerate := dep/lib/libsamplerate.a
OBJECTS += $(libsamplerate) OBJECTS += $(libsamplerate)


# Dependencies # Dependencies
$(shell mkdir -p dep)
DEP_LOCAL := dep DEP_LOCAL := dep
DEPS += $(libsamplerate) DEPS += $(libsamplerate)


$(libsamplerate): $(libsamplerate):
mkdir -p dep
cd dep && $(WGET) http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz cd dep && $(WGET) http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz
cd dep && $(UNTAR) libsamplerate-0.1.9.tar.gz cd dep && $(UNTAR) libsamplerate-0.1.9.tar.gz
cd dep/libsamplerate-0.1.9 && $(CONFIGURE) cd dep/libsamplerate-0.1.9 && $(CONFIGURE)


Loading…
Cancel
Save