From: Michel Pollet Date: Mon, 27 Feb 2012 13:59:27 +0000 (+0000) Subject: vhci: Fix Makefile PWD X-Git-Tag: v1.0b1~37 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=a1e798cedfa604a0dfd5b5d577a7c8bae81a1bd5;p=sx%2Fsimavr.git vhci: Fix Makefile PWD Somehow PWD is wrong, it's the shell's one not the make one Signed-off-by: Michel Pollet --- diff --git a/examples/vhci/Makefile b/examples/vhci/Makefile index 6c3a0f8..fd624ef 100644 --- a/examples/vhci/Makefile +++ b/examples/vhci/Makefile @@ -11,6 +11,7 @@ HCD_V = 1.14 VHCI_V = 0.6 BASE_URL = http://downloads.sourceforge.net/project/usb-vhci +PWD = ${shell pwd} all: library @@ -36,7 +37,7 @@ lib/libusb_vhci.a: module libusb_vhci-$(VHCI_V) ln -snf vhci-hcd-$(HCD_V) linux && \ cd libusb_vhci-$(VHCI_V) && \ ./configure --prefix=$(PWD) CPPFLAGS="-I$(PWD)" --enable-static --disable-shared && \ - make && make install + make -j && make install libusb_vhci-$(VHCI_V).tar.bz2: wget $(BASE_URL)/native%20libraries/libusb_vhci-$(VHCI_V).tar.bz2