diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-01-16 22:45:44 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-01-16 22:45:44 +0000 |
| commit | 137501b9ac11032f57c63b4f90ec9379bf134b08 (patch) | |
| tree | a1eb4cac2ce5a6e745b2701aca790383bd75ba36 /apps/plugins | |
| parent | ffb0cdc4263c5c5f4b13fd7514533f4d17fa2a3b (diff) | |
| download | rockbox-137501b9ac11032f57c63b4f90ec9379bf134b08.zip rockbox-137501b9ac11032f57c63b4f90ec9379bf134b08.tar.gz rockbox-137501b9ac11032f57c63b4f90ec9379bf134b08.tar.bz2 rockbox-137501b9ac11032f57c63b4f90ec9379bf134b08.tar.xz | |
The dependency generation for credits.c failed since it includes a file
that does't exist when gcc -MM is used. Thus we do one more work-around that
creates the file before depedency generation and then removes it again
afterwards...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8355 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 2ed1a10..8464e93 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -52,11 +52,11 @@ endif .PHONY: $(SUBDIRS) all: $(BUILDDIR)/libplugin.a $(ROCKS) $(SUBDIRS) $(DEPFILE) -$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS +$(BUILDDIR)/credits.raw: $(DOCSDIR)/CREDITS @echo "create credits.raw" @perl credits.pl < $< > $@ -$(OBJDIR)/credits.o: credits.c $(OBJDIR)/credits.raw +$(OBJDIR)/credits.o: credits.c $(BUILDDIR)/credits.raw @mkdir -p `dirname $@` @echo "CC $<" @$(CC) $(CFLAGS) -I$(OBJDIR) -c $< -o $@ |