534d058140185d11e0d3a91afa9e49c9b157e582
[nbdkit-plugin-vddk.git] / Makefile
1 # nbdkit-plugin-vddk
2 # Copyright (C) 2013-2017 Richard W.M. Jones.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
7 # met:
8 #
9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 #
12 # * Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
15 #
16 # * Neither the name of Red Hat nor the names of its contributors may be
17 # used to endorse or promote products derived from this software without
18 # specific prior written permission.
19 #
20 # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
21 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
24 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 # SUCH DAMAGE.
32
33 # See README.
34
35 PWD := $(shell pwd)
36 VERSION := $(shell grep ^Version: nbdkit-plugin-vddk.spec | awk '{print $$2}')
37 VDDK_DIR := $(shell grep '^%global vddkdir' nbdkit-plugin-vddk.spec | awk '{print $$3}')
38
39 all: check-tools check-vddk check-source
40         rpmbuild -ba \
41             --define "_topdir $(PWD)" \
42             --define "_builddir $(PWD)" \
43             --define "_rpmdir $(PWD)" \
44             --define "_sourcedir $(PWD)" \
45             --define "_specdir $(PWD)" \
46             --define "_srcrpmdir $(PWD)" \
47             nbdkit-plugin-vddk.spec
48
49 check-tools:
50         @if ! rpmbuild --help >/dev/null 2>&1; then echo "‘rpmbuild’ not installed or not working.  Install the ‘rpm-build’ package."; exit 1; fi
51         @if ! wget --help >/dev/null 2>&1; then echo "‘wget’ not installed or not working.  Install the ‘wget’ package."; exit 1; fi
52
53 check-vddk:
54         @if ! [ -d $(VDDK_DIR) ] || ! [ -d $(VDDK_DIR)/include ]; then echo -e "You must download VDDK and edit ‘nbdkit-plugin-vddk.spec’ to point ‘vddkdir’\nto the location where you unpacked VDDK."; exit 1; fi
55
56 check-source: nbdkit-$(VERSION).tar.gz
57
58 nbdkit-$(VERSION).tar.gz:
59         rm -rf $@ $@-t
60         wget -O $@-t http://libguestfs.org/download/nbdkit/$@
61         mv $@-t $@
62
63 clean:
64         rm -f *~
65         rm -f *.src.rpm
66         rm -rf x86_64
67         rm -rf BUILDROOT
68
69 .PHONY: all check-source check-tools check-vddk clean