diff options
author | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-12-27 01:30:06 +0000 |
---|---|---|
committer | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-12-27 01:30:06 +0000 |
commit | 92c9d46449a7562080ea0277a7b7309ed2bdba03 (patch) | |
tree | d08881c84c1ec71d5218e3292f7c730783dadf67 /testing/build.tests/Makefile.libftdi | |
parent | f7274784a22e975dbab6a8b24770b652a813e64d (diff) | |
download | openocd+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.tests/Makefile.libftdi')
-rwxr-xr-x | testing/build.tests/Makefile.libftdi | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/testing/build.tests/Makefile.libftdi b/testing/build.tests/Makefile.libftdi deleted file mode 100755 index 1a9612c0..00000000 --- a/testing/build.tests/Makefile.libftdi +++ /dev/null @@ -1,51 +0,0 @@ -# -*- mode: makefile -*- -default: _complain_ -include ./local.uses - -TARFILE_LOCAL = ${VIRGINS}/libftdi-${LIBFTDI_VERSION}.tar.gz -TARFILE_URL = http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/libftdi-${LIBFTDI_VERSION}.tar.gz - -LIBFTDI_SRC_DIR = ${HERE}/libftdi-${LIBFTDI_VERSION} -LIBFTDI_BUILD_DIR= ${HERE}/libftdi-build - -download: - mkdir -p virgins - wget -O ${TARFILE_LOCAL} ${TARFILE_URL} - -clean:: - rm -rf ${LIBFTDI_SRC_DIR} - -unpack: - tar xf ${TARFILE_LOCAL} - -PATH := ${EXEC_PREFIX}/bin:${PATH} -export PATH - -clean:: - rm -rf ${LIBFTDI_BUILD_DIR} - -configure: - rm -rf ${LIBFTDI_BUILD_DIR} - mkdir -p ${LIBFTDI_BUILD_DIR} - cd ${LIBFTDI_BUILD_DIR} && ${LIBFTDI_SRC_DIR}/configure \ - --prefix=${PREFIX} \ - --exec-prefix=${EXEC_PREFIX} - -build: - cd ${LIBFTDI_BUILD_DIR} && ${MAKE} - -install: - cd ${LIBFTDI_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 |