summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index c9cef64f70..535a59d5b6 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -52,7 +52,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
52 52
53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c 53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c
54 54
55APPS = tetris.c screensaver.c tree.c app.c play.c 55APPS = tetris.c screensaver.c tree.c app.c play.c menu.c
56 56
57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ 57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \
58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) 58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
@@ -68,6 +68,9 @@ clean:
68distclean: clean 68distclean: clean
69 $(RM) config.cache 69 $(RM) config.cache
70 70
71menu.o: $(APPDIR)/menu.c
72 $(CC) $(CFLAGS) -c $< -o $@
73
71tetris.o: $(APPDIR)/tetris.c 74tetris.o: $(APPDIR)/tetris.c
72 $(CC) $(CFLAGS) -c $< -o $@ 75 $(CC) $(CFLAGS) -c $< -o $@
73 76