summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-28 00:00:02 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-28 00:00:02 +0000
commitc6e0734b7b99b97253b01a5c45ba1dbb7da874f4 (patch)
treec7fed4acb09ede739a226004deaa5d74ec4ce9db
parenta73d52c7118f45c766c7d0e546788739b0b42201 (diff)
downloadrockbox-c6e0734b7b99b97253b01a5c45ba1dbb7da874f4.tar.gz
rockbox-c6e0734b7b99b97253b01a5c45ba1dbb7da874f4.zip
works in new dir
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@284 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/x11/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 27dad9f178..2b55c07022 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -19,7 +19,8 @@
19 19
20TARGET = rockboxui 20TARGET = rockboxui
21 21
22FIRMWAREDIR = ../firmware 22APPDIR= ..
23FIRMWAREDIR = ../../firmware
23DRIVERS = $(FIRMWAREDIR)/drivers 24DRIVERS = $(FIRMWAREDIR)/drivers
24 25
25CC = gcc 26CC = gcc
@@ -56,6 +57,12 @@ clean:
56distclean: clean 57distclean: clean
57 $(RM) config.cache 58 $(RM) config.cache
58 59
60tetris.o: $(APPDIR)/tetris.c
61 $(CC) $(CFLAGS) -c $< -o $@
62
63app.o: $(APPDIR)/app.c
64 $(CC) $(CFLAGS) -c $< -o $@
65
59lcd.o: $(DRIVERS)/lcd.c 66lcd.o: $(DRIVERS)/lcd.c
60 $(CC) $(CFLAGS) -c $< -o $@ 67 $(CC) $(CFLAGS) -c $< -o $@
61 68