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/native | |
| 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/native')
| -rw-r--r-- | apps/plugins/bitmaps/native/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugins/bitmaps/native/Makefile b/apps/plugins/bitmaps/native/Makefile index d7745ee..071f0d4 100644 --- a/apps/plugins/bitmaps/native/Makefile +++ b/apps/plugins/bitmaps/native/Makefile @@ -26,8 +26,7 @@ BMPINCDIR = $(BUILDDIR)/pluginbitmaps include $(TOOLSDIR)/makebmp.inc clean: - @echo "cleaning plugins/bitmaps/native" - @rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) + $(call PRINTS,cleaning plugins/bitmaps/native)rm -f $(CSRC) $(OBJS) $(OUTPUT) $(DEPFILE) @rmdir $(OBJDIR) -include $(DEPFILE) |