diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index d15df1a90f..6666523402 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -46,9 +46,10 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) FIRMSRCS = chartables.c lcd.c sprintf.c +APPS = tetris.c screensaver.c + SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ - button-x11.c tetris.c app.c tree.c io.c sleep.c \ - $(FIRMSRCS) + button-x11.c app.c tree.c io.c sleep.c $(APPS) $(FIRMSRCS) OBJS := $(SRCS:c=o) @@ -64,6 +65,9 @@ distclean: clean tetris.o: $(APPDIR)/tetris.c $(CC) $(CFLAGS) -c $< -o $@ +screensaver.o: $(APPDIR)/screensaver.c + $(CC) $(CFLAGS) -c $< -o $@ + app.o: $(APPDIR)/app.c $(CC) $(CFLAGS) -c $< -o $@