forked from len0rd/rockbox
make credits.c use the generated list of names properly as already done
in apps/Makefile git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2641 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
64628808b7
commit
0ab96fdf70
2 changed files with 9 additions and 2 deletions
|
@ -101,7 +101,10 @@ clean:
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(RM) config.cache
|
$(RM) config.cache
|
||||||
|
|
||||||
$(OBJDIR)/credits.o: $(APPDIR)/credits.c
|
$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
|
||||||
|
perl $(APPDIR)/credits.pl < $< > $@
|
||||||
|
|
||||||
|
$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
|
||||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||||
|
|
||||||
$(OBJDIR)/menu.o: $(APPDIR)/menu.c
|
$(OBJDIR)/menu.o: $(APPDIR)/menu.c
|
||||||
|
|
|
@ -35,6 +35,7 @@ DRIVERS = $(FIRMWAREDIR)/drivers
|
||||||
COMMON = $(FIRMWAREDIR)/common
|
COMMON = $(FIRMWAREDIR)/common
|
||||||
LIBMADDIR = $(PREVAPPDIR)/common/libmad
|
LIBMADDIR = $(PREVAPPDIR)/common/libmad
|
||||||
TOOLSDIR = ../../tools
|
TOOLSDIR = ../../tools
|
||||||
|
DOCSDIR = ../../docs
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
|
@ -157,7 +158,10 @@ $(OBJDIR)/mpegplay.o: $(PREVAPPDIR)/common/mpegplay.c
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(OBJDIR)/credits.o: $(APPDIR)/credits.c
|
$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
|
||||||
|
perl $(APPDIR)/credits.pl < $< > $@
|
||||||
|
|
||||||
|
$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
|
||||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||||
|
|
||||||
$(OBJDIR)/menu.o: $(APPDIR)/menu.c
|
$(OBJDIR)/menu.o: $(APPDIR)/menu.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue