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 c546c62dd3..9912e8230d 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -76,7 +76,7 @@ APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W - FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c APPS = main.c tree.c menu.c credits.c main_menu.c\ - playlist.c showtext.c wps.c settings.c + playlist.c showtext.c wps.c settings.c status.c MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c @@ -206,6 +206,9 @@ $(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c $(OBJDIR)/settings.o: $(APPDIR)/settings.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/status.o: $(APPDIR)/status.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c $(CC) $(APPCFLAGS) -c $< -o $@ |