aboutsummaryrefslogtreecommitdiff
path: root/testing/build.test1/Makefile.libusb
blob: 815592a189c2d28c30a671355f894d878fe3facb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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_linux}.tar.bz2
TARFILE_URL      = http://downloads.sourceforge.net/libusb/libusb-${LIBUSB_VERSION_linux}.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