mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Added dependency to the tools dir, so it's automatically built with the rest. Updated build docs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3825 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
067262dbf0
commit
4b392cd105
4 changed files with 51 additions and 17 deletions
|
|
@ -119,7 +119,10 @@ ROCKSRCS := $(patsubst $(PLUGINDIR)/%.c,%.c,$(wildcard $(PLUGINDIR)/*.c))
|
|||
|
||||
ROCKS := $(ROCKSRCS:%.c=$(OBJDIR)/%.rock)
|
||||
|
||||
all: $(TARGET) $(ROCKS)
|
||||
all: $(TOOLSDIR)/convbdf $(TARGET) $(ROCKS)
|
||||
|
||||
$(TOOLSDIR)/convbdf:
|
||||
$(MAKE) -C $(TOOLSDIR)
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) $(OBJS) -o $(TARGET) $(LDFLAGS)
|
||||
|
|
|
|||
|
|
@ -117,7 +117,10 @@ ROCKS := $(ROCKSRC:$(APPDIR)/plugins/%.c=$(OBJDIR)/%.rock)
|
|||
|
||||
OBJS := $(OBJDIR)/lang.o $(SRCS:%.c=$(OBJDIR)/%.o)
|
||||
|
||||
all: $(TARGET) $(EXTRA_TARGETS) $(ROCKS)
|
||||
all: $(TOOLSDIR)/convbdf $(TARGET) $(EXTRA_TARGETS) $(ROCKS)
|
||||
|
||||
$(TOOLSDIR)/convbdf:
|
||||
$(MAKE) -C $(TOOLSDIR)
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS) $(OBJDIR)/lang.[cho] \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue