rename bbn into bbn_80211 and normalize specfiles for module-tools
[crunchxml.git] / Makefile
1 # $Id$
2 WEBFETCH        := wget
3 SHA1SUM = sha1sum
4
5 # default - overridden by the build
6 SPECFILE = crunchxml.spec
7
8 main.URL        := http://mirror.onelab.eu/third-party/crunchxml-1.1.tar.gz
9 main.SHA1SUM    := 88be1b8780feb078bda0968aea61596f209c2462
10 main.FILE       := $(notdir $(main.URL))
11
12 # Thierry - when called from within the build, PWD is /build
13 SOURCEFILES := $(main.FILE)
14
15 $(main.FILE): #FORCE
16         @if [ ! -e "$@" ] ; then echo "$(WEBFETCH) $(main.URL)" ; $(WEBFETCH) $(main.URL) ; fi
17         @if [ ! -e "$@" ] ; then echo "Could not download source file: $@ does not exist" ; exit 1 ; fi
18         @if test "$$(sha1sum $@ | awk '{print $$1}')" != "$(main.SHA1SUM)" ; then \
19             echo "sha1sum of the downloaded $@ does not match the one from 'sources' file" ; \
20             echo "Local copy: $$(sha1sum $@)" ; \
21             echo "In sources: $$(grep $@ sources)" ; \
22             exit 1 ; \
23         else \
24             ls -l $@ ; \
25         fi
26
27 sources: $(SOURCEFILES)
28 .PHONY: sources
29
30 PWD=$(shell pwd)
31 PREPARCH ?= noarch
32 RPMDIRDEFS = --define "_sourcedir $(PWD)" --define "_builddir $(PWD)" --define "_srcrpmdir $(PWD)" --define "_rpmdir $(PWD)"
33 trees: sources
34         rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps -bp --target $(PREPARCH) $(SPECFILE)
35
36 srpm: sources
37         rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps -bs $(SPECFILE)
38
39 TARGET ?= $(shell uname -m)
40 rpm: sources
41         rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps --target $(TARGET) -bb $(SPECFILE)
42
43 clean:
44         rm -f *.rpm *.tgz *.bz2 *.gz
45
46 ++%: varname=$(subst +,,$@)
47 ++%:
48         @echo "$(varname)=$($(varname))"
49 +%: varname=$(subst +,,$@)
50 +%:
51         @echo "$($(varname))"