aboutsummaryrefslogtreecommitdiff
path: root/testing/build.test1/Makefile.libftdi
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2021-10-12 08:28:34 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2021-11-05 22:44:19 +0000
commit4afd8852bb320deea553504161bd2c79c434bb1b (patch)
tree76f64c3fc2143d0c3d170f7dd6b8e2c3a5977e4e /testing/build.test1/Makefile.libftdi
parent6fef2eca381ddcda593aca27290706873a9bcde2 (diff)
downloadriscv-openocd-4afd8852bb320deea553504161bd2c79c434bb1b.zip
riscv-openocd-4afd8852bb320deea553504161bd2c79c434bb1b.tar.gz
riscv-openocd-4afd8852bb320deea553504161bd2c79c434bb1b.tar.bz2
Remove remaining references to FTD2XX driver
This includes a USB blaster configuration that only worked with that low-level access and some obsolete build-tests. Change-Id: I53d27cbf782ebbd131b1af25e358adf35f2b4500 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/6660 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'testing/build.test1/Makefile.libftdi')
-rw-r--r--testing/build.test1/Makefile.libftdi51
1 files changed, 0 insertions, 51 deletions
diff --git a/testing/build.test1/Makefile.libftdi b/testing/build.test1/Makefile.libftdi
deleted file mode 100644
index 1a9612c..0000000
--- a/testing/build.test1/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