diff options
Diffstat (limited to 'apps/bitmaps')
| -rw-r--r-- | apps/bitmaps/Makefile | 34 | ||||
| -rw-r--r-- | apps/bitmaps/mono/Makefile | 7 | ||||
| -rw-r--r-- | apps/bitmaps/native/Makefile | 5 | ||||
| -rw-r--r-- | apps/bitmaps/remote_mono/Makefile | 5 | ||||
| -rw-r--r-- | apps/bitmaps/remote_native/Makefile | 5 |
5 files changed, 9 insertions, 47 deletions
diff --git a/apps/bitmaps/Makefile b/apps/bitmaps/Makefile deleted file mode 100644 index aa436158..0000000 --- a/apps/bitmaps/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# __________ __ ___. -# 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 diff --git a/apps/bitmaps/mono/Makefile b/apps/bitmaps/mono/Makefile index dede4e8..28893e9 100644 --- a/apps/bitmaps/mono/Makefile +++ b/apps/bitmaps/mono/Makefile @@ -5,7 +5,7 @@ # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ # \/ \/ \/ \/ \/ # $Id$ -# +# INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \ -I$(OBJDIR) @@ -26,8 +26,7 @@ BMPINCDIR = $(BUILDDIR)/bitmaps include $(TOOLSDIR)/makebmp.inc clean: - @echo "cleaning bitmaps/mono" - @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) - @rmdir $(OBJDIR) + $(call PRINTS,cleaning bitmaps/mono)rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + $(SILENT)rmdir $(OBJDIR) -include $(DEPFILE) diff --git a/apps/bitmaps/native/Makefile b/apps/bitmaps/native/Makefile index 49e9417..96f7e50 100644 --- a/apps/bitmaps/native/Makefile +++ b/apps/bitmaps/native/Makefile @@ -26,8 +26,7 @@ BMPINCDIR = $(BUILDDIR)/bitmaps include $(TOOLSDIR)/makebmp.inc clean: - @echo "cleaning bitmaps/native" - @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) - @rmdir $(OBJDIR) + $(call PRINTS,cleaning bitmaps/native)rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + $(SILENT)rmdir $(OBJDIR) -include $(DEPFILE) diff --git a/apps/bitmaps/remote_mono/Makefile b/apps/bitmaps/remote_mono/Makefile index dd78124..db707c7 100644 --- a/apps/bitmaps/remote_mono/Makefile +++ b/apps/bitmaps/remote_mono/Makefile @@ -26,8 +26,7 @@ BMPINCDIR = $(BUILDDIR)/bitmaps include $(TOOLSDIR)/makebmp.inc clean: - @echo "cleaning bitmaps/remotemono" - @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) - @rmdir $(OBJDIR) + $(call PRINTS,cleaning bitmaps/remotemono)rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + $(SILENT)rmdir $(OBJDIR) -include $(DEPFILE) diff --git a/apps/bitmaps/remote_native/Makefile b/apps/bitmaps/remote_native/Makefile index 573ee55..03eccfd 100644 --- a/apps/bitmaps/remote_native/Makefile +++ b/apps/bitmaps/remote_native/Makefile @@ -26,8 +26,7 @@ BMPINCDIR = $(BUILDDIR)/bitmaps include $(TOOLSDIR)/makebmp.inc clean: - @echo "cleaning bitmaps/remote_native" - @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) - @rmdir $(OBJDIR) + $(call PRINTS,cleaning bitmaps/remote_native)rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + $(SILENT)rmdir $(OBJDIR) -include $(DEPFILE) |