diff options
Diffstat (limited to 'uisimulator/x11/Makefile')
-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 c9cef64f70..535a59d5b6 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -52,7 +52,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) FIRMSRCS = chartables.c lcd.c sprintf.c id3.c -APPS = tetris.c screensaver.c tree.c app.c play.c +APPS = tetris.c screensaver.c tree.c app.c play.c menu.c SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) @@ -68,6 +68,9 @@ clean: distclean: clean $(RM) config.cache +menu.o: $(APPDIR)/menu.c + $(CC) $(CFLAGS) -c $< -o $@ + tetris.o: $(APPDIR)/tetris.c $(CC) $(CFLAGS) -c $< -o $@ |