diff options
-rw-r--r-- | uisimulator/x11/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index a35778c931..7ad005838d 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -80,7 +80,7 @@ APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W - FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ powermgmt.c font.c panic.c sysfont.c -APPS = main.c tree.c menu.c credits.c main_menu.c\ +APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c @@ -157,6 +157,9 @@ $(OBJDIR)/menu.o: $(APPDIR)/menu.c $(OBJDIR)/main_menu.o: $(APPDIR)/main_menu.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/language.o: $(APPDIR)/language.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/sound_menu.o: $(APPDIR)/sound_menu.c $(CC) $(APPCFLAGS) -c $< -o $@ |