Browse Source

Create dep directory in libsamplerate target

tags/v1.0.1
Andrew Belt 6 years ago
parent
commit
7dd4143625
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)

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

$(libsamplerate):
mkdir -p dep
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/libsamplerate-0.1.9 && $(CONFIGURE)


Loading…
Cancel
Save