summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/x11/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 27dad9f..2b55c07 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -19,7 +19,8 @@
TARGET = rockboxui
-FIRMWAREDIR = ../firmware
+APPDIR= ..
+FIRMWAREDIR = ../../firmware
DRIVERS = $(FIRMWAREDIR)/drivers
CC = gcc
@@ -56,6 +57,12 @@ clean:
distclean: clean
$(RM) config.cache
+tetris.o: $(APPDIR)/tetris.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
+app.o: $(APPDIR)/app.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
lcd.o: $(DRIVERS)/lcd.c
$(CC) $(CFLAGS) -c $< -o $@