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 33465d4710..9753394456 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 debug.c -APPS = tetris.c screensaver.c tree.c app.c play.c menu.c +APPS = tetris.c screensaver.c tree.c app.c play.c menu.c icons.c SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) @@ -71,6 +71,9 @@ distclean: clean menu.o: $(APPDIR)/menu.c $(CC) $(CFLAGS) -c $< -o $@ +icons.o: $(APPDIR)/icons.c + $(CC) $(CFLAGS) -c $< -o $@ + tetris.o: $(APPDIR)/tetris.c $(CC) $(CFLAGS) -c $< -o $@ |