summaryrefslogtreecommitdiff
path: root/Makefile
blob: 75d17711a37a5ec563851bfc46ac5672da440a1e (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
topdir = .
include config.mk

################################################################################

# these are the resulting packages
packages=doc libretools libretools-mips64el librelib
# and which directories they contain
doc=doc
libretools=\
	src \
	src/abslibre-tools \
	src/chroot-tools \
	src/devtools \
	src/fullpkg \
	src/librefetch \
	src/toru
libretools-mips64el=src/mips64el-tools
librelib=src/lib

################################################################################

all: PHONY build
copy:    PHONY $(addprefix copy-,   $(packages))
build:   PHONY $(addprefix build-,  $(packages))
install: PHONY $(addprefix install-,$(packages))
check:
	@cd test && ./testenv $(TESTENVFLAGS) roundup

%/copy: PHONY %
	$(MAKE) -C $* copy
%/build: PHONY %
	$(MAKE) -C $*
%/install: PHONY %
	$(MAKE) -C $* install

.SECONDEXPANSION:
$(addprefix copy-,   $(packages)): copy-%:    PHONY $$(addsuffix /copy,   $$($$*))
$(addprefix build-,  $(packages)): build-%:   PHONY $$(addsuffix /build,  $$($$*))
$(addprefix install-,$(packages)): install-%: PHONY $$(addsuffix /install,$$($$*))

################################################################################

FORCE: PHONY
PHONY:
.PHONY: FORCE PHONY