diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2005-12-05 19:33:02 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2005-12-05 19:33:02 +0000 |
| commit | 544e5ae157ab367c0406c8eba833e71cc1fff6dd (patch) | |
| tree | 65ba47ee02c708868eb077cdb6b6c6e54fe1190c /apps/codecs/Makefile | |
| parent | 1b0d1daf38f00410f062556aa2635a1886ec0b61 (diff) | |
| download | rockbox-544e5ae157ab367c0406c8eba833e71cc1fff6dd.zip rockbox-544e5ae157ab367c0406c8eba833e71cc1fff6dd.tar.gz rockbox-544e5ae157ab367c0406c8eba833e71cc1fff6dd.tar.bz2 rockbox-544e5ae157ab367c0406c8eba833e71cc1fff6dd.tar.xz | |
Make use of the generated dependency file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8155 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Makefile')
| -rw-r--r-- | apps/codecs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/codecs/Makefile b/apps/codecs/Makefile index 8428cd8..1cfe7e5 100644 --- a/apps/codecs/Makefile +++ b/apps/codecs/Makefile @@ -43,7 +43,7 @@ CODECDEPS = $(LINKCODEC) $(BUILDDIR)/libcodec.a OUTPUT = $(SOFTWARECODECS) -all: $(OUTPUT) $(ROCKS) $(DEPFILE) +all: $(OUTPUT) $(ROCKS) ifndef SIMVER ELFIT = $(SILENT)(file=`basename $@`; \ @@ -183,3 +183,7 @@ clean: @$(MAKE) -C libm4a clean OBJDIR=$(OBJDIR)/libm4a @$(MAKE) -C dumb clean OBJDIR=$(OBJDIR)/dumb @$(MAKE) -C lib clean OBJDIR=$(OBJDIR)/lib + +ifneq ($(MAKECMDGOALS),clean) +-include $(DEPFILE) +endif |