summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/Makefile5
-rw-r--r--uisimulator/x11/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index ad0eb2df17..68e50223d0 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -63,7 +63,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
64 64
65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \ 65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \
66 mpeg.c powermgmt.c font.c sysfont.c 66 mpeg.c powermgmt.c font.c sysfont.c ctype.c
67 67
68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
69 playlist.c showtext.c wps.c wps-display.c settings.c status.c \ 69 playlist.c showtext.c wps.c wps-display.c settings.c status.c \
@@ -221,6 +221,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
221$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 221$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
222 $(CC) $(CFLAGS) -c $< -o $@ 222 $(CC) $(CFLAGS) -c $< -o $@
223 223
224$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
225 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
226
224$(OBJDIR)/strtok.o: $(COMMON)/strtok.c 227$(OBJDIR)/strtok.o: $(COMMON)/strtok.c
225 $(CC) $(CFLAGS) -c $< -o $@ 228 $(CC) $(CFLAGS) -c $< -o $@
226 229
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 81ddaf58a7..930de50d7b 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -78,7 +78,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
79 79
80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
81 powermgmt.c font.c panic.c sysfont.c 81 powermgmt.c font.c panic.c sysfont.c ctype.c
82 82
83APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 83APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
84 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c\ 84 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c\
@@ -263,6 +263,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
263$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 263$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
264 $(CC) $(CFLAGS) -c $< -o $@ 264 $(CC) $(CFLAGS) -c $< -o $@
265 265
266$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
267 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
268
266$(OBJDIR)/stubs.o: ../common/stubs.c 269$(OBJDIR)/stubs.o: ../common/stubs.c
267 $(CC) $(CFLAGS) -c $< -o $@ 270 $(CC) $(CFLAGS) -c $< -o $@
268 271