summaryrefslogtreecommitdiff
path: root/Makefile.d/modules.mk
blob: 01be29dc24b2884fd4d32e4d76de3858b3473cea (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
56
57
58
59
60
61
62
#
#	Copyright (C) 2014 Francis Rowe <info@gluglug.org.uk>
#	Copyright (C) 2014 Luke Shumaker <lukeshu@sbcglobal.net>
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

# Easy names for tmp/builddeps-stamps/%
$(foreach arch,$(arches),$(foreach module,$(modules), builddeps-$(arch)/$(module) )): builddeps-%: PHONY tmp/builddeps-stamps/%

# The "all" rules
getdeps:   $(foreach arch,$(arches),$(foreach module,$(modules), src/$(arch)/$(module)       )) 
builddeps: $(foreach arch,$(arches),$(foreach module,$(modules), builddeps-$(arch)/$(module) ))
cleandeps: $(foreach arch,$(arches),$(foreach module,$(modules), cleandeps-$(arch)/$(module) ))
	rm -rf roms/* tmp/*

# If we depend on a file in src/$(arch)/$(module)/, tell Make that we
# should generate it by calling the builddep rule.
define rule_module_files
src/%(arch)/%(module)/%: | tmp/builddeps-stamps/%(arch)/%(module)
	test -e $@
endef
$(eval $(call multiglob,module_files,arch module))

# The generic rules

# "get" rules
define rule_download
src/%(arch)/%(module): Makefile.d/downloader Makefile.d/modules/%(module).mk $(%(module)_patches)
	Makefile.d/downloader %(arch) %(module)::$(%(module)_source)
	$(%(module)_patch)
	test -d $@
	touch $@
endef
$(eval $(call multiglob,download,arch module))

# "builddeps" and "cleandeps" rules
# % = %(arch)/%(module)
tmp/builddeps-stamps/%: src/%
	cd $< && { test -f ./Makefile || test -x ./configure || ./autogen.sh; }
	cd $< && { test -f ./Makefile || ./configure $($(*F)_configure); }
	$(MAKE) CC='$(CC)' -C $<
	mkdir -p $(@D)
	touch $@

# "cleandeps" rules
$(foreach arch,$(arches),$(foreach module,$(modules), cleandeps-$(arch)/$(module) )): \
cleandeps-%: PHONY cleandeps-%-custom
	rm -f tmp/builddeps-stamps/%
cleandeps-%-custom: PHONY
	test ! -f src/$*/Makefile || $(MAKE) CC='$(CC)' -C src/$* clean