summaryrefslogtreecommitdiff
path: root/testing/build.test1/Makefile.libusb
diff options
context:
space:
mode:
authorduane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-12-27 01:30:06 +0000
committerduane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-12-27 01:30:06 +0000
commit92c9d46449a7562080ea0277a7b7309ed2bdba03 (patch)
treed08881c84c1ec71d5218e3292f7c730783dadf67 /testing/build.test1/Makefile.libusb
parentf7274784a22e975dbab6a8b24770b652a813e64d (diff)
downloadopenocd+libswd-92c9d46449a7562080ea0277a7b7309ed2bdba03.tar.gz
openocd+libswd-92c9d46449a7562080ea0277a7b7309ed2bdba03.tar.bz2
openocd+libswd-92c9d46449a7562080ea0277a7b7309ed2bdba03.tar.xz
openocd+libswd-92c9d46449a7562080ea0277a7b7309ed2bdba03.zip
Renamed build.tests to build.test1
git-svn-id: svn://svn.berlios.de/openocd/trunk@1276 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'testing/build.test1/Makefile.libusb')
-rwxr-xr-xtesting/build.test1/Makefile.libusb55
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/build.test1/Makefile.libusb b/testing/build.test1/Makefile.libusb
new file mode 100755
index 00000000..84e66aec
--- /dev/null
+++ b/testing/build.test1/Makefile.libusb
@@ -0,0 +1,55 @@
+# -*- mode: makefile -*-
+default: _complain_
+
+include ./local.uses
+
+ifeq (x"$BUILD_SYSNAME",x"cygwin")
+$(error Please use the Win32 specific port of LibUSB not the Unix version)
+endif
+ifeq (x"$BUILD_SYSNAME",x"mingw32")
+$(error Please use the win32 specific port of LibUSB not the Unix version)
+endif
+
+TARFILE_LOCAL = ${VIRGINS}/libusb-${LIBUSB_VERSION}.tar.bz2
+TARFILE_URL = http://downloads.sourceforge.net/libusb/libusb-${LIBUSB_VERSION}.tar.gz
+
+LIBUSB_SRC_DIR = ${HERE}/libusb-${LIBUSB_VERSION}
+LIBUSB_BUILD_DIR = ${HERE}/libusb-build
+
+download:
+ wget -O ${TARFILE_LOCAL} ${TARFILE_URL}
+
+unpack:
+ rm -rf ${LIBUSB_SRC_DIR}
+ tar xfz ${TARFILE_LOCAL}
+
+clean::
+ rm -rf ${LIBUSB_SRC_DIR}
+
+configure:
+ rm -rf ${LIBUSB_BUILD_DIR}
+ mkdir -p ${LIBUSB_BUILD_DIR}
+ cd ${LIBUSB_BUILD_DIR} && ${LIBUSB_SRC_DIR}/configure \
+ --prefix=${PREFIX} --exec-prefix=${EXEC_PREFIX}
+
+clean::
+ rm -rf ${LIBUSB_BUILD_DIR}
+
+build:
+ cd ${LIBUSB_BUILD_DIR} && ${MAKE}
+
+install:
+ cd ${LIBUSB_BUILD_DIR} && ${MAKE} install
+
+all: unpack configure build install
+
+.PHONY: install
+
+_complain_:
+ @echo ""
+ @echo "Please try one of these targets: bootstrap, clean, configure, build, install"
+ @echo " Or read the makefile and learn about the permutation test targets"
+ @echo ""
+ @echo "You also might find the download and unpack targets helpful."
+ @echo ""
+ @exit 1