summarylogtreecommitdiffstats
path: root/Makefile.single
blob: 5212a5ae2da6fc5438e4bdd4628930e243b9475e (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
.POSIX:

SHELL = bash

all: build64 build32

configure64: 
	set +e; \
	. "$$_TMP_VARFILE" 2>/dev/null ||:; \
	unset _TMP_VARFILE; \
	. "$$_where"/PKGBUILD; \
	_configure64 $(MAKE)

tools64: configure64
	set +e; \
	. "$$_TMP_VARFILE" 2>/dev/null ||:; \
	unset _TMP_VARFILE; \
	. "$$_where"/PKGBUILD; \
	_tools64 $(MAKE)

configure32: tools64
	set +e; \
	. "$$_TMP_VARFILE" 2>/dev/null ||:; \
	unset _TMP_VARFILE; \
	. "$$_where"/PKGBUILD; \
	_configure32 $(MAKE)

build64: configure32
	set +e; \
	. "$$_TMP_VARFILE" 2>/dev/null ||:; \
	unset _TMP_VARFILE; \
	. "$$_where"/PKGBUILD; \
	_build64 $(MAKE)

build32: configure32
	set +e; \
	. "$$_TMP_VARFILE" 2>/dev/null ||:; \
	unset _TMP_VARFILE; \
	. "$$_where"/PKGBUILD; \
	_build32 $(MAKE)

.PHONY: all configure64 tools64 configure32 build64 build32
.ONESHELL: