751d199587
unconditionally to better detect updated dependencies. Previously, new files and modified images were not properly detected and didn't cause rebuilds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8457 a1c6a512-1295-4272-9138-f99709370657
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
ifndef V
|
|
SILENT=@
|
|
endif
|
|
|
|
all:
|
|
ifneq ($(strip $(BMP2RB_NATIVE)),)
|
|
@echo "MAKE in bitmaps/native"
|
|
$(SILENT)mkdir -p $(OBJDIR)/native
|
|
@$(MAKE) -C native OBJDIR=$(OBJDIR)/native
|
|
endif
|
|
ifneq ($(strip $(BMP2RB_MONO)),)
|
|
@echo "MAKE in bitmaps/mono"
|
|
$(SILENT)mkdir -p $(OBJDIR)/mono
|
|
@$(MAKE) -C mono OBJDIR=$(OBJDIR)/mono
|
|
endif
|
|
ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
|
|
@echo "MAKE in bitmaps/remote_native"
|
|
$(SILENT)mkdir -p $(OBJDIR)/remote_native
|
|
@$(MAKE) -C remote_native OBJDIR=$(OBJDIR)/remote_native
|
|
endif
|
|
ifneq ($(strip $(BMP2RB_REMOTEMONO)),)
|
|
@echo "MAKE in bitmaps/remote_mono"
|
|
$(SILENT)mkdir -p $(OBJDIR)/remote_mono
|
|
@$(MAKE) -C remote_mono OBJDIR=$(OBJDIR)/remote_mono
|
|
endif
|