diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-10-27 21:48:06 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-10-27 21:48:06 +0000 |
| commit | a796260a6b9929f6aca844b4a788a2f55ef60d4b (patch) | |
| tree | 21d3f983c2e618806cf6f160c67f7efd053061f0 /apps/plugins/bitmaps/Makefile | |
| parent | 354770088e87c3aa8720f462fe3ac8368d7de5b5 (diff) | |
| download | rockbox-a796260a6b9929f6aca844b4a788a2f55ef60d4b.zip rockbox-a796260a6b9929f6aca844b4a788a2f55ef60d4b.tar.gz rockbox-a796260a6b9929f6aca844b4a788a2f55ef60d4b.tar.bz2 rockbox-a796260a6b9929f6aca844b4a788a2f55ef60d4b.tar.xz | |
Next step of Makefile tuning: * Use 'make' internal commands for printing messages. Saves build time especially on cygwin. * SILENT variable used in more places. * Bitmap build system uses one Makefille less.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11369 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps/Makefile')
| -rw-r--r-- | apps/plugins/bitmaps/Makefile | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/apps/plugins/bitmaps/Makefile b/apps/plugins/bitmaps/Makefile deleted file mode 100644 index abc8fd6..0000000 --- a/apps/plugins/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 plugins/bitmaps/native" - $(SILENT)mkdir -p $(OBJDIR)/native - @$(MAKE) -C native OBJDIR=$(OBJDIR)/native -endif -ifneq ($(strip $(BMP2RB_MONO)),) - @echo "MAKE in plugins/bitmaps/mono" - $(SILENT)mkdir -p $(OBJDIR)/mono - @$(MAKE) -C mono OBJDIR=$(OBJDIR)/mono -endif -ifneq ($(strip $(BMP2RB_REMOTENATIVE)),) - @echo "MAKE in plugins/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 plugins/bitmaps/remote_mono" - $(SILENT)mkdir -p $(OBJDIR)/remote_mono - @$(MAKE) -C remote_mono OBJDIR=$(OBJDIR)/remote_mono -endif |