forked from TangoCash/saved.buildsystem-ddt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
204 lines (186 loc) · 7.35 KB
/
Makefile
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#master makefile
SHELL = /bin/bash
UID := $(shell id -u)
ifeq ($(UID), 0)
warn:
@echo "You are running as root. Do not do this, it is dangerous."
@echo "Aborting the build. Log in as a regular user and retry."
else
LC_ALL:=C
LANG:=C
export TOPDIR LC_ALL LANG
include make/buildenv.mk
PARALLEL_JOBS := $(shell echo $$((1 + `getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1`)))
override MAKE = make $(if $(findstring j,$(filter-out --%,$(MAKEFLAGS))),,-j$(PARALLEL_JOBS)) $(SILENT_OPT)
############################################################################
# A print out of environment variables
#
# maybe a help about all supported targets would be nice here, too...
#
printenv:
clear
@echo '================================================================================'
@echo "Build Environment Variables:"
@echo "MAINTAINER : $(MAINTAINER)"
@echo "ARCHIVE_DIR : $(ARCHIVE)"
@echo "BASE_DIR : $(BASE_DIR)"
@echo "CUSTOM_DIR : $(CUSTOM_DIR)"
@echo "APPS_DIR : $(APPS_DIR)"
@echo "DRIVER_DIR : $(DRIVER_DIR)"
@echo "FLASH_DIR : $(FLASH_DIR)"
@echo "CROSS_DIR : $(CROSS_DIR)"
@echo "CROSS_BASE : $(CROSS_BASE)"
@echo "RELEASE_DIR : $(RELEASE_DIR)"
@echo "HOST_DIR : $(HOST_DIR)"
@echo "TARGET_DIR : $(TARGET_DIR)"
@echo "PATH : `type -p fmt>/dev/null&&echo $(PATH)|sed 's/:/ /g' |fmt -65|sed 's/ /:/g; 2,$$s/^/ : /;'||echo $(PATH)`"
@echo "BOXARCH : $(BOXARCH)"
@echo "BUILD : $(BUILD)"
@echo "TARGET : $(TARGET)"
@echo "PLATFORM : $(PLATFORM)"
@echo "BOXTYPE : $(BOXTYPE)"
@echo "KERNEL_VERSION : $(KERNEL_VERSION)"
@echo "MULTICOM_VERSION : $(MULTICOM_VERSION)"
@echo "PLAYER_VERSION : $(PLAYER_VERSION)"
@echo "MEDIAFW : $(MEDIAFW)"
@echo "EXTERNAL_LCD : $(EXTERNAL_LCD)"
@echo "PARALLEL_JOBS : $(PARALLEL_JOBS)"
@echo "IMAGE : $(IMAGE)"
@echo '================================================================================'
ifeq ($(IMAGE), $(filter $(IMAGE), neutrino neutrino-wlandriver))
@echo "LOCAL_NEUTRINO_BUILD_OPTIONS : $(LOCAL_NEUTRINO_BUILD_OPTIONS)"
@echo "LOCAL_NEUTRINO_CFLAGS : $(LOCAL_NEUTRINO_CFLAGS)"
@echo "LOCAL_NEUTRINO_DEPS : $(LOCAL_NEUTRINO_DEPS)"
else ifeq ($(IMAGE), $(filter $(IMAGE), enigma2 enigma2-wlandriver))
@echo "LOCAL_ENIGMA2_BUILD_OPTIONS : $(LOCAL_ENIGMA2_BUILD_OPTIONS)"
@echo "LOCAL_ENIGMA2_CPPFLAGS : $(LOCAL_ENIGMA2_CPPFLAGS)"
@echo "LOCAL_ENIGMA2_DEPS : $(LOCAL_ENIGMA2_DEPS)"
endif
@echo '================================================================================'
@echo ""
@make --no-print-directory toolcheck
ifeq ($(MAINTAINER),)
@echo "##########################################################################"
@echo "# The MAINTAINER variable is not set. It defaults to your name from the #"
@echo "# passwd entry, but this seems to have failed. Please set it in 'config'.#"
@echo "##########################################################################"
@echo
endif
@if ! test -e $(BASE_DIR)/config; then \
echo;echo "If you want to create or modify the configuration, run './make.sh'"; \
echo; fi
help:
@echo "a few helpful make targets:"
@echo "* make crosstool - build cross toolchain"
@echo "* make bootstrap - prepares for building"
@echo "* make print-targets - print out all available targets"
@echo ""
@echo "later, you might find those useful:"
@echo "* make update-self - update the build system"
@echo "* make update - update the build system, apps, driver and flash"
@echo ""
@echo "cleantargets:"
@echo "make clean - Clears everything except kernel."
@echo "make distclean - Clears the whole construction."
@echo
# define package versions first...
include make/contrib-libs.mk
include make/contrib-apps.mk
include make/linux-kernel.mk
include make/driver.mk
include make/tools.mk
include make/root-etc.mk
include make/python.mk
include make/gstreamer.mk
include make/enigma2.mk
include make/enigma2-plugins.mk
include make/enigma2-release.mk
include make/neutrino.mk
include make/neutrino-plugins.mk
include make/neutrino-release.mk
include make/flashimage.mk
include make/cleantargets.mk
include make/patches.mk
include make/bootstrap.mk
update-self:
git pull
update:
$(MAKE) distclean
@if test -d $(BASE_DIR); then \
cd $(BASE_DIR)/; \
echo '===================================================================='; \
echo ' updating $(GIT_NAME)-buildsystem git repository'; \
echo '===================================================================='; \
echo; \
if [ "$(GIT_STASH_PULL)" = "stashpull" ]; then \
git stash && git stash show -p > ./pull-stash-cdk.patch || true && git pull && git stash pop || true; \
else \
git pull; \
fi; \
fi
@echo;
@if test -d $(DRIVER_DIR); then \
cd $(DRIVER_DIR)/; \
echo '==================================================================='; \
echo ' updating $(GIT_NAME_DRIVER)-driver git repository'; \
echo '==================================================================='; \
echo; \
if [ "$(GIT_STASH_PULL)" = "stashpull" ]; then \
git stash && git stash show -p > ./pull-stash-driver.patch || true && git pull && git stash pop || true; \
else \
git pull; \
fi; \
fi
@echo;
@if test -d $(APPS_DIR); then \
cd $(APPS_DIR)/; \
echo '==================================================================='; \
echo ' updating $(GIT_NAME_APPS)-apps git repository'; \
echo '==================================================================='; \
echo; \
if [ "$(GIT_STASH_PULL)" = "stashpull" ]; then \
git stash && git stash show -p > ./pull-stash-apps.patch || true && git pull && git stash pop || true; \
else \
git pull; \
fi; \
fi
@echo;
@if test -d $(FLASH_DIR); then \
cd $(FLASH_DIR)/; \
echo '==================================================================='; \
echo ' updating $(GIT_NAME_FLASH)-flash git repository'; \
echo '==================================================================='; \
echo; \
if [ "$(GIT_STASH_PULL)" = "stashpull" ]; then \
git stash && git stash show -p > ./pull-stash-flash.patch || true && git pull && git stash pop || true; \
else \
git pull; \
fi; \
fi
@echo;
all:
@echo "'make all' is not a valid target. Please read the documentation."
# target for testing only. not useful otherwise
everything: $(shell sed -n 's/^\$$.D.\/\(.*\):.*/\1/p' make/*.mk)
# print all present targets...
print-targets:
@sed -n 's/^\$$.D.\/\(.*\):.*/\1/p; s/^\([a-z].*\):\( \|$$\).*/\1/p;' \
`ls -1 make/*.mk|grep -v make/unmaintained.mk` Makefile | \
sort -u | fold -s -w 65
# for local extensions, e.g. special plugins or similar...
# put them into $(BASE_DIR)/local since that is ignored in .gitignore
-include ./Makefile.local
# debug target, if you need that, you know it. If you don't know if you need
# that, you don't need it.
.print-phony:
@echo $(PHONY)
PHONY += everything print-targets
PHONY += all printenv .print-phony
PHONY += update update-self
.PHONY: $(PHONY)
# this makes sure we do not build top-level dependencies in parallel
# (which would not be too helpful anyway, running many configure and
# downloads in parallel...), but the sub-targets are still built in
# parallel, which is useful on multi-processor / multi-core machines
.NOTPARALLEL:
endif