summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/Makefile5
-rw-r--r--uisimulator/x11/Makefile6
2 files changed, 9 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index bcfef516ca..970c61ac6c 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -101,7 +101,10 @@ clean:
101distclean: clean 101distclean: clean
102 $(RM) config.cache 102 $(RM) config.cache
103 103
104$(OBJDIR)/credits.o: $(APPDIR)/credits.c 104$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
105 perl $(APPDIR)/credits.pl < $< > $@
106
107$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
105 $(CC) $(APPCFLAGS) -c $< -o $@ 108 $(CC) $(APPCFLAGS) -c $< -o $@
106 109
107$(OBJDIR)/menu.o: $(APPDIR)/menu.c 110$(OBJDIR)/menu.o: $(APPDIR)/menu.c
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index b8c996f3bf..e0dc896087 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -35,6 +35,7 @@ DRIVERS = $(FIRMWAREDIR)/drivers
35COMMON = $(FIRMWAREDIR)/common 35COMMON = $(FIRMWAREDIR)/common
36LIBMADDIR = $(PREVAPPDIR)/common/libmad 36LIBMADDIR = $(PREVAPPDIR)/common/libmad
37TOOLSDIR = ../../tools 37TOOLSDIR = ../../tools
38DOCSDIR = ../../docs
38 39
39CC = gcc 40CC = gcc
40RM = rm -f 41RM = rm -f
@@ -157,7 +158,10 @@ $(OBJDIR)/mpegplay.o: $(PREVAPPDIR)/common/mpegplay.c
157 158
158endif 159endif
159 160
160$(OBJDIR)/credits.o: $(APPDIR)/credits.c 161$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
162 perl $(APPDIR)/credits.pl < $< > $@
163
164$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
161 $(CC) $(APPCFLAGS) -c $< -o $@ 165 $(CC) $(APPCFLAGS) -c $< -o $@
162 166
163$(OBJDIR)/menu.o: $(APPDIR)/menu.c 167$(OBJDIR)/menu.o: $(APPDIR)/menu.c