summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Flaz <flanz@rockbox.org>2002-05-14 23:49:11 +0000
committerChristian Flaz <flanz@rockbox.org>2002-05-14 23:49:11 +0000
commitdc6cd7dcb20f455f8c474b585c9bf98e79c9a2d8 (patch)
tree22de73c0b1865e3c9861feba44b4b6165720304e
parent766a0ae4be6d2f91c328f91843ca6dfee63487d4 (diff)
downloadrockbox-dc6cd7dcb20f455f8c474b585c9bf98e79c9a2d8.tar.gz
rockbox-dc6cd7dcb20f455f8c474b585c9bf98e79c9a2d8.zip
initial version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@580 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/win32/makefile.vc681
1 files changed, 81 insertions, 0 deletions
diff --git a/uisimulator/win32/makefile.vc6 b/uisimulator/win32/makefile.vc6
new file mode 100644
index 0000000000..0ab7af16d3
--- /dev/null
+++ b/uisimulator/win32/makefile.vc6
@@ -0,0 +1,81 @@
1############################################################################
2# __________ __ ___.
3# Open \______ \ ____ ____ | | _\_ |__ _______ ___
4# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7# \/ \/ \/ \/ \/
8# $Id$
9#
10# Copyright (C) 2002 by Felix Arends
11#
12# All files in this archive are subject to the GNU General Public License.
13# See the file COPYING in the source tree root for full license agreement.
14#
15# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16# KIND, either express or implied.
17#
18############################################################################
19
20TARGET = rockboxui
21
22FIRMWAREDIR = ../../firmware
23DRIVERS = $(FIRMWAREDIR)/drivers
24COMMON = $(FIRMWAREDIR)/common
25RM = del
26
27CC = cl
28DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR -DARCHOS_RECORDER -D_WIN32 -DWIN32 -DHAVE_LCD_BITMAP
29LDFLAGS = /Feuisw32.exe /link -subsystem:windows
30INCLUDES = -I$(FIRMWAREDIR) -I$(DRIVERS) -I$(COMMON)
31LIBS = gdi32.lib user32.lib
32
33
34CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb"
35
36#SRCS = $(wildcard *.c)
37
38SRCS = lcd-win32.c tetris.c uisw32.c lcd.c button.c tree.c app.c\
39 menu.c play.c icons.c screensaver.c\
40 debug.c\
41 chartables.c kernel.c Release/uisw32.res dir-win32.c
42
43OBJS = $(SRCS:.c=.obj)
44
45
46uisw32.exe: $(OBJS)
47 $(CC) $(CFLAGS) $(LIBS) $(LDFLAGS) $(OBJS)
48
49lcd.obj: $(DRIVERS)/lcd.c
50 $(CC) $(CFLAGS) -c $(DRIVERS)/lcd.c -olcd.obj
51
52debug.obj: $(FIRMWAREDIR)/debug.c
53 $(CC) $(CFLAGS) -c $(FIRMWAREDIR)/debug.c -odebug.obj
54
55
56chartables.obj: $(FIRMWAREDIR)/chartables.c
57 $(CC) $(CFLAGS) -c $(FIRMWAREDIR)/chartables.c -ochartables.obj
58
59tetris.obj: ../tetris.c
60 $(CC) $(CFLAGS) -c ../tetris.c -otetris.obj
61
62tree.obj: ../tree.c
63 $(CC) $(CFLAGS) -c ../tree.c -otree.obj
64
65play.obj: ../play.c
66 $(CC) $(CFLAGS) -c ../play.c -oplay.obj
67
68menu.obj: ../menu.c
69 $(CC) $(CFLAGS) -c ../menu.c -omenu.obj
70
71screensaver.obj: ../screensaver.c
72 $(CC) $(CFLAGS) -c ../screensaver.c -oscreensaver.obj
73
74app.obj: ../app.c
75 $(CC) $(CFLAGS) -c ../app.c -oapp.obj
76
77icons.obj: ../icons.c
78 $(CC) $(CFLAGS) -c ../icons.c -oicons.obj
79
80clean:
81 $(RM) *.obj \ No newline at end of file