You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

202 lines
5.8 KiB

# makefile for basic prerequisites
TOOLCHECK = find-git find-svn find-gzip find-bzip2 find-patch find-gawk
TOOLCHECK += find-makeinfo find-automake find-gcc find-libtool find-bison
TOOLCHECK += find-yacc find-flex find-tic find-pkg-config find-help2man
TOOLCHECK += find-cmake find-ccache find-autopoint find-python find-curl
TOOLCHECK += find-lzma find-gperf find-gettext find-bc
preqs: download neutrino-hd-source ni-git tuxbox-git
$(CCACHE):
@echo
@echo "ccache package on host missing."
@echo "==============================="
@echo
@false
download:
@echo
@echo "Download directory missing:"
@echo "==========================="
@echo "You need to make a directory named 'download' by executing 'mkdir download'"
@echo "or create a symlink to the directory where you keep your sources, e.g. by"
@echo "typing 'ln -s /path/to/my/Archive download'."
@echo
@false
$(N_HD_SOURCE):
@echo ' ============================================================================== '
@echo " Cloning ni-neutrino-hd git repo"
@echo " and creating remote repo '$(TUXBOX_REMOTE_REPO)'"
@echo ' ============================================================================== '
mkdir -p $(SOURCE_DIR)
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(NI_NEUTRINO).git $(FLAVOUR)
pushd $@ && \
git remote add $(TUXBOX_REMOTE_REPO) $(TUXBOX_GIT)/$(TUXBOX_NEUTRINO).git && \
git fetch $(TUXBOX_REMOTE_REPO)
$(BUILD-GENERIC-PC):
git clone $(NI_GIT)/$(NI_BUILD-GENERIC-PC).git $(BUILD-GENERIC-PC)
$(SOURCE_DIR)/$(TUXBOX_BOOTLOADER):
cd $(SOURCE_DIR) && \
git clone $(TUXBOX_GIT)/$(notdir $@).git
cd $@ && \
git checkout coolstream_hdx
$(SOURCE_DIR)/$(TUXBOX_PLUGINS):
cd $(SOURCE_DIR) && \
git clone --recursive $(TUXBOX_GIT)/$(notdir $@).git
$(SOURCE_DIR)/$(NI_TUXWETTER):
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
cd $@ && \
git remote add $(TUXBOX_REMOTE_REPO) $(TUXBOX_GIT)/$(TUXBOX_TUXWETTER).git && \
git fetch $(TUXBOX_REMOTE_REPO)
$(SOURCE_DIR)/$(NI_LIBSTB-HAL):
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
cd $@ && \
git remote add $(TUXBOX_REMOTE_REPO) $(TUXBOX_GIT)/$(TUXBOX_LIBSTB-HAL).git && \
git fetch $(TUXBOX_REMOTE_REPO)
$(SOURCE_DIR)/$(NI_LIBCOOLSTREAM):
ifeq ($(HAS_LIBCS), yes)
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
cd $@ && \
git checkout $(NI_LIBCOOLSTREAM_BRANCH)
endif
# upstream for rebase
$(SOURCE_DIR)/$(NI_FFMPEG):
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
cd $@ && \
git remote add upstream https://git.ffmpeg.org/ffmpeg.git && \
git fetch --all
# upstream for rebase
# torvalds for cherry-picking
$(SOURCE_DIR)/$(NI_LINUX-KERNEL):
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
cd $@ && \
git remote add upstream https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git && \
git remote add torvalds https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git && \
git fetch --all
$(SOURCE_DIR)/$(NI_DRIVERS-BIN) \
$(SOURCE_DIR)/$(NI_LOGO_STUFF) \
$(SOURCE_DIR)/$(NI_SMARTHOMEINFO) \
$(SOURCE_DIR)/$(NI_STREAMRIPPER) \
$(SOURCE_DIR)/$(NI_OPENTHREADS):
cd $(SOURCE_DIR) && \
git clone $(NI_GIT)/$(notdir $@).git
archives-list:
@rm -f $(BUILD_TMP)/$@
@make -qp | grep --only-matching '^\$(ARCHIVE).*:' | sed "s|:||g" > $(BUILD_TMP)/$@
DOCLEANUP=no
GETMISSING=no
archives-info: archives-list
@echo "[ ** ] Unused targets in make/archives.mk"
@grep --only-matching '^\$$(ARCHIVE).*:' make/archives.mk | sed "s|:||g" | \
while read target; do \
found=false; \
for makefile in make/*.mk; do \
if [ "$${makefile##*/}" = "archives.mk" ]; then \
continue; \
fi; \
if [ "$${makefile: -9}" = "-extra.mk" ]; then \
continue; \
fi; \
if grep -q "$$target" $$makefile; then \
found=true; \
fi; \
if [ "$$found" = "true" ]; then \
continue; \
fi; \
done; \
if [ "$$found" = "false" ]; then \
echo -e "[$(TERM_RED) !! $(TERM_NORMAL)] $$target"; \
fi; \
done;
@echo "[ ** ] Unused archives"
@find $(ARCHIVE)/ -type f | \
while read archive; do \
if ! grep -q $$archive $(BUILD_TMP)/archives-list; then \
echo -e "[$(TERM_YELLOW) rm $(TERM_NORMAL)] $$archive"; \
if [ "$(DOCLEANUP)" = "yes" ]; then \
rm $$archive; \
fi; \
fi; \
done;
@echo "[ ** ] Missing archives"
@cat $(BUILD_TMP)/archives-list | \
while read archive; do \
if [ -e $$archive ]; then \
#echo -e "[$(TERM_GREEN) ok $(TERM_NORMAL)] $$archive"; \
true; \
else \
echo -e "[$(TERM_YELLOW) -- $(TERM_NORMAL)] $$archive"; \
if [ "$(GETMISSING)" = "yes" ]; then \
make $$archive; \
fi; \
fi; \
done;
@$(REMOVE)/archives-list
# FIXME - how to resolve variables while grepping makefiles?
patches-info:
@echo "[ ** ] Unused patches"
@for patch in $(PATCHES)/*; do \
if [ ! -f $$patch ]; then \
continue; \
fi; \
patch=$${patch##*/}; \
found=false; \
for makefile in make/*.mk; do \
if grep -q "$$patch" $$makefile; then \
found=true; \
fi; \
if [ "$$found" = "true" ]; then \
continue; \
fi; \
done; \
if [ "$$found" = "false" ]; then \
echo -e "[$(TERM_RED) !! $(TERM_NORMAL)] $$patch"; \
fi; \
done;
find-%:
@TOOL=$(patsubst find-%,%,$@); \
type -p $$TOOL >/dev/null || \
{ echo "required tool $$TOOL missing."; false; }
toolcheck: $(TOOLCHECK)
@echo "All required tools seem to be installed."
neutrino-hd-source: $(N_HD_SOURCE)
tuxbox-git: \
$(SOURCE_DIR)/$(TUXBOX_BOOTLOADER) \
$(SOURCE_DIR)/$(TUXBOX_PLUGINS)
ni-git: \
$(BUILD-GENERIC-PC) \
$(SOURCE_DIR)/$(NI_TUXWETTER) \
$(SOURCE_DIR)/$(NI_LIBSTB-HAL) \
$(SOURCE_DIR)/$(NI_LIBCOOLSTREAM) \
$(SOURCE_DIR)/$(NI_DRIVERS-BIN) \
$(SOURCE_DIR)/$(NI_FFMPEG) \
$(SOURCE_DIR)/$(NI_LINUX-KERNEL) \
$(SOURCE_DIR)/$(NI_LOGO_STUFF) \
$(SOURCE_DIR)/$(NI_SMARTHOMEINFO) \
$(SOURCE_DIR)/$(NI_STREAMRIPPER) \
$(SOURCE_DIR)/$(NI_OPENTHREADS)