diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2008-11-21 13:21:25 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2008-11-21 13:21:25 +0000 |
| commit | 8a7c4af27c48588746508be5899d0b0e18932149 (patch) | |
| tree | fddc8a234c6a6ee44f95642e0d4e025c98dbccf1 | |
| parent | 344ad683beb5dc8ee5f199920e913a7277cf5258 (diff) | |
| download | rockbox-8a7c4af27c48588746508be5899d0b0e18932149.zip rockbox-8a7c4af27c48588746508be5899d0b0e18932149.tar.gz rockbox-8a7c4af27c48588746508be5899d0b0e18932149.tar.bz2 rockbox-8a7c4af27c48588746508be5899d0b0e18932149.tar.xz | |
Added a proper rule for rockbox-info.txt
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19167 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/root.make | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/root.make b/tools/root.make index c9b7db9..c6a9232 100644 --- a/tools/root.make +++ b/tools/root.make @@ -22,6 +22,8 @@ TOOLS = $(TOOLSDIR)/rdf2binary $(TOOLSDIR)/convbdf \ $(TOOLSDIR)/codepages $(TOOLSDIR)/scramble $(TOOLSDIR)/bmp2rb \ $(TOOLSDIR)/uclpack $(TOOLSDIR)/mktccboot $(TOOLSDIR)/mkboot +RBINFO = $(BUILDDIR)/rockbox-info.txt + # list suffixes to be understood by $* .SUFFIXES: .rock .codec .map .elf .c .S .o .bmp .a @@ -65,8 +67,11 @@ OBJ := $(OBJ:.S=.o) OBJ += $(BMP:.bmp=.o) OBJ := $(subst $(ROOTDIR),$(BUILDDIR),$(OBJ)) -build: $(TOOLS) $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS) $(ARCHOSROM) - $(SILENT)$(TOOLSDIR)/mkinfo.pl $(BUILDDIR)/rockbox-info.txt +build: $(TOOLS) $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS) $(ARCHOSROM) $(RBINFO) + +$(RBINFO): $(BUILDDIR)/$(BINARY) + $(SILENT)echo Creating $(@F) + $(SILENT)$(TOOLSDIR)/mkinfo.pl $@ ifneq (clean,$(findstring clean,$(MAKECMDGOALS))) # don't build deps before cleaning $(DEPFILE) dep: |