summaryrefslogtreecommitdiff
path: root/uisimulator/win32/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/makefile')
-rw-r--r--uisimulator/win32/makefile23
1 files changed, 15 insertions, 8 deletions
diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile
index 0e93dcd855..11f16b3006 100644
--- a/uisimulator/win32/makefile
+++ b/uisimulator/win32/makefile
@@ -27,11 +27,11 @@ APPDIR = ../../apps/
27RECDIR = $(APPDIR)recorder/ 27RECDIR = $(APPDIR)recorder/
28RM = del 28RM = del
29 29
30DISPLAY = -DHAVE_LCD_CHARCELLS 30#DISPLAY = -DHAVE_LCD_CHARCELLS
31#DISPLAY = -DHAVE_LCD_BITMAP 31DISPLAY = -DHAVE_LCD_BITMAP
32 32
33KEYPAD = -DHAVE_PLAYER_KEYPAD 33#KEYPAD = -DHAVE_PLAYER_KEYPAD
34#KEYPAD = -DHAVE_RECORDER_KEYPAD 34KEYPAD = -DHAVE_RECORDER_KEYPAD
35 35
36CC = cl 36CC = cl
37DEFINES = -DWIN32 -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \ 37DEFINES = -DWIN32 -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \
@@ -46,10 +46,10 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb"
46SRCS = lcd-win32.c uisw32.c lcd.c button.c tree.c main.c \ 46SRCS = lcd-win32.c uisw32.c lcd.c button.c tree.c main.c \
47 chartables.c kernel.c uisw32.res dir-win32.c main_menu.c \ 47 chartables.c kernel.c uisw32.res dir-win32.c main_menu.c \
48 play.c debug-win32.c menu.c credits.c sound_menu.c mpeg.c \ 48 play.c debug-win32.c menu.c credits.c sound_menu.c mpeg.c \
49 id3.c settings.c sprintf.c thread-win32.c playlist.c 49 id3.c settings.c sprintf.c thread-win32.c playlist.c string-win32.c
50 50
51!IF ("$(DISPLAY)" == "-DHAVE_LCD_BITMAP") 51!IF ("$(DISPLAY)" == "-DHAVE_LCD_BITMAP")
52SRCS = $(SRCS) tetris.c screensaver.c icons.c bmp.c 52SRCS = $(SRCS) tetris.c boxes.c bounce.c sokoban.c icons.c bmp.c
53!ENDIF 53!ENDIF
54 54
55OBJS = $(SRCS:.c=.obj) 55OBJS = $(SRCS:.c=.obj)
@@ -81,8 +81,14 @@ play.obj: ../../apps/play.c
81bmp.obj: ../../apps/recorder/bmp.c 81bmp.obj: ../../apps/recorder/bmp.c
82 $(CC) $(CFLAGS) -c ../../apps/recorder/bmp.c -obmp.obj 82 $(CC) $(CFLAGS) -c ../../apps/recorder/bmp.c -obmp.obj
83 83
84screensaver.obj: ../../apps/recorder/screensaver.c 84bounce.obj: ../../apps/recorder/bounce.c
85 $(CC) $(CFLAGS) -c ../../apps/recorder/screensaver.c -oscreensaver.obj 85 $(CC) $(CFLAGS) -c ../../apps/recorder/bounce.c -obounce.obj
86
87sokoban.obj: ../../apps/recorder/sokoban.c
88 $(CC) $(CFLAGS) -c ../../apps/recorder/sokoban.c -osokoban.obj
89
90boxes.obj: ../../apps/recorder/boxes.c
91 $(CC) $(CFLAGS) -c ../../apps/recorder/boxes.c -oboxes.obj
86 92
87menu.obj: ../../apps/menu.c 93menu.obj: ../../apps/menu.c
88 $(CC) $(CFLAGS) -c ../../apps/menu.c -omenu.obj 94 $(CC) $(CFLAGS) -c ../../apps/menu.c -omenu.obj
@@ -110,3 +116,4 @@ playlist.obj: ../../apps/playlist.c
110 116
111clean: 117clean:
112 $(RM) *.obj 118 $(RM) *.obj
119