summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/HACKING23
1 files changed, 19 insertions, 4 deletions
diff --git a/uisimulator/HACKING b/uisimulator/HACKING
index e750282a7a..a56f6b9563 100644
--- a/uisimulator/HACKING
+++ b/uisimulator/HACKING
@@ -32,11 +32,26 @@ Terminology
32 (This has been compiled and run on at least Solaris and Linux. It should 32 (This has been compiled and run on at least Solaris and Linux. It should
33 work on other unixes too but we haven't tried any other yet.) 33 work on other unixes too but we haven't tried any other yet.)
34 34
35 Create a new directory and run the 'tools/configure' 35 Create a new directory and run the 'tools/configure' script in
36 script. Select target to simulate and select simulation. The script will 36 there. Select target to simulate and select simulation. The script will
37 then generate a Makefile for you. 37 then generate a Makefile for you:
38 38
39 Run 'make'. 39 $ mkdir build-dir
40 $ cd build-dir
41 $ ../tools/configure
42
43 [ answer to questions ]
44
45 [ Makefile created, archos subdirectory created ]
46
47 $ make
48 $ ./rockboxui
49
50 Note that the simulator uses a local subdirectory named 'archos' as "root
51 directory" for the simulated box. Copy a bunch of mp3 files into that
52 directory, create subdirectories and do all sorts of things you want to be
53 able to browse when you fire up the simulator.
54
40 55
41 For the Win32 simulator: 56 For the Win32 simulator:
42 57