summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/x11/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 6abafc1aef..c9cef64f70 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -50,12 +50,12 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
50 50
51#SRCS = $(wildcard *.c) 51#SRCS = $(wildcard *.c)
52 52
53FIRMSRCS = chartables.c lcd.c sprintf.c 53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c
54 54
55APPS = tetris.c screensaver.c 55APPS = tetris.c screensaver.c tree.c app.c play.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 app.c tree.c io.c sleep.c $(APPS) $(FIRMSRCS) 58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
59 59
60OBJS := $(SRCS:c=o) 60OBJS := $(SRCS:c=o)
61 61
@@ -77,6 +77,9 @@ screensaver.o: $(APPDIR)/screensaver.c
77app.o: $(APPDIR)/app.c 77app.o: $(APPDIR)/app.c
78 $(CC) $(CFLAGS) -c $< -o $@ 78 $(CC) $(CFLAGS) -c $< -o $@
79 79
80play.o: $(APPDIR)/play.c
81 $(CC) $(CFLAGS) -c $< -o $@
82
80tree.o: $(APPDIR)/tree.c 83tree.o: $(APPDIR)/tree.c
81 $(CC) $(CFLAGS) -c $< -o $@ 84 $(CC) $(CFLAGS) -c $< -o $@
82 85
@@ -86,6 +89,9 @@ lcd.o: $(DRIVERS)/lcd.c
86chartables.o: $(FIRMWAREDIR)/chartables.c 89chartables.o: $(FIRMWAREDIR)/chartables.c
87 $(CC) $(CFLAGS) -c $< -o $@ 90 $(CC) $(CFLAGS) -c $< -o $@
88 91
92id3.o: $(FIRMWAREDIR)/id3.c
93 $(CC) $(CFLAGS) -c $< -o $@
94
89sprintf.o: $(COMMON)/sprintf.c 95sprintf.o: $(COMMON)/sprintf.c
90 $(CC) $(CFLAGS) -c $< -o $@ 96 $(CC) $(CFLAGS) -c $< -o $@
91 97