Search
lxdream.org :: lxdream :: r1258:f8a9c0fd2abb
lxdream 0.9.1
released Jun 29
Download Now
changeset1258:f8a9c0fd2abb
parent1257:e1314ad3e7cc
child1259:8a69f4d0b31d
authornkeynes
dateMon Mar 05 11:41:03 2012 +1000 (12 years ago)
Small cleanups:
Refactor the post-windowing setup into gl_init_driver() in video_gl.c
Move gl_sl.c into src/drivers and tidy up a bit.
Fix OS X compiling plugins with -mdynamic-no-pic
src/Makefile.am
src/Makefile.in
src/drivers/gl_sl.c
src/drivers/video_egl.c
src/drivers/video_gl.c
src/drivers/video_gl.h
src/drivers/video_glx.c
src/drivers/video_nsgl.m
src/pvr2/gl_sl.c
src/pvr2/glutil.c
src/pvr2/glutil.h
src/tools/genglsl.c
1.1 --- a/src/Makefile.am Sun Mar 04 21:28:48 2012 +1000
1.2 +++ b/src/Makefile.am Mon Mar 05 11:41:03 2012 +1000
1.3 @@ -35,14 +35,14 @@
1.4 audio_alsa.lo audio_sdl.lo audio_esd.lo audio_pulse.lo input_lirc.lo \
1.5 lxdream_dummy.lo
1.6
1.7 -AM_CPPFLAGS = @LXDREAMCPPFLAGS@
1.8 -
1.9 lxdream_LINK = $(LINK) @LXDREAMLDFLAGS@
1.10 lxdream_LDADD = liblxdream-core.a @GLIB_LIBS@ @GTK_LIBS@ @LIBPNG_LIBS@ @LIBISOFS_LIBS@ $(INTLLIBS) @LXDREAM_LIBS@
1.11 lxdream_SOURCES = main.c
1.12 lxdream_LIBS = liblxdream-core.a
1.13 +lxdream_CPPFLAGS = @LXDREAMCPPFLAGS@
1.14
1.15 noinst_LIBRARIES = liblxdream-core.a
1.16 +liblxdream_core_a_CPPFLAGS = @LXDREAMCPPFLAGS@
1.17 liblxdream_core_a_SOURCES = version.c config.c config.h lxdream.h dream.h gui.h cpu.c cpu.h hook.h \
1.18 gettext.h mem.c mem.h sdram.c mmio.h watch.c \
1.19 asic.c asic.h clock.h serial.h \
1.20 @@ -60,7 +60,7 @@
1.21 pvr2/pvr2.c pvr2/pvr2.h pvr2/pvr2mem.c pvr2/pvr2mmio.h \
1.22 pvr2/tacore.c pvr2/rendsort.c pvr2/tileiter.h pvr2/shaders.glsl \
1.23 pvr2/texcache.c pvr2/yuv.c pvr2/rendsave.c pvr2/scene.c pvr2/scene.h \
1.24 - pvr2/gl_sl.c pvr2/shaders.h pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h pvr2/glrender.c \
1.25 + pvr2/shaders.h pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h pvr2/glrender.c \
1.26 maple/maple.c maple/maple.h \
1.27 maple/controller.c maple/kbd.c maple/mouse.c maple/lightgun.c maple/vmu.c \
1.28 loader.c loader.h elf.h bootstrap.c bootstrap.h util.c gdlist.c gdlist.h \
1.29 @@ -68,7 +68,7 @@
1.30 display.c display.h dckeysyms.h \
1.31 drivers/audio_null.c drivers/video_null.c \
1.32 drivers/video_gl.c drivers/video_gl.h drivers/gl_fbo.c drivers/gl_vbo.c \
1.33 - drivers/serial_unix.c \
1.34 + drivers/gl_sl.c drivers/serial_unix.c \
1.35 drivers/cdrom/cdrom.h drivers/cdrom/cdrom.c drivers/cdrom/drive.h \
1.36 drivers/cdrom/sector.h drivers/cdrom/sector.c drivers/cdrom/defs.h \
1.37 drivers/cdrom/cd_nrg.c drivers/cdrom/cd_cdi.c drivers/cdrom/cd_gdi.c \
2.1 --- a/src/Makefile.in Sun Mar 04 21:28:48 2012 +1000
2.2 +++ b/src/Makefile.in Mon Mar 05 11:41:03 2012 +1000
2.3 @@ -122,15 +122,15 @@
2.4 aica/aica.h aica/audio.c aica/audio.h pvr2/pvr2.c pvr2/pvr2.h \
2.5 pvr2/pvr2mem.c pvr2/pvr2mmio.h pvr2/tacore.c pvr2/rendsort.c \
2.6 pvr2/tileiter.h pvr2/shaders.glsl pvr2/texcache.c pvr2/yuv.c \
2.7 - pvr2/rendsave.c pvr2/scene.c pvr2/scene.h pvr2/gl_sl.c \
2.8 - pvr2/shaders.h pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h \
2.9 - pvr2/glrender.c maple/maple.c maple/maple.h maple/controller.c \
2.10 - maple/kbd.c maple/mouse.c maple/lightgun.c maple/vmu.c \
2.11 - loader.c loader.h elf.h bootstrap.c bootstrap.h util.c \
2.12 - gdlist.c gdlist.h vmu/vmuvol.c vmu/vmuvol.h vmu/vmulist.c \
2.13 - vmu/vmulist.h display.c display.h dckeysyms.h \
2.14 - drivers/audio_null.c drivers/video_null.c drivers/video_gl.c \
2.15 - drivers/video_gl.h drivers/gl_fbo.c drivers/gl_vbo.c \
2.16 + pvr2/rendsave.c pvr2/scene.c pvr2/scene.h pvr2/shaders.h \
2.17 + pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h pvr2/glrender.c \
2.18 + maple/maple.c maple/maple.h maple/controller.c maple/kbd.c \
2.19 + maple/mouse.c maple/lightgun.c maple/vmu.c loader.c loader.h \
2.20 + elf.h bootstrap.c bootstrap.h util.c gdlist.c gdlist.h \
2.21 + vmu/vmuvol.c vmu/vmuvol.h vmu/vmulist.c vmu/vmulist.h \
2.22 + display.c display.h dckeysyms.h drivers/audio_null.c \
2.23 + drivers/video_null.c drivers/video_gl.c drivers/video_gl.h \
2.24 + drivers/gl_fbo.c drivers/gl_vbo.c drivers/gl_sl.c \
2.25 drivers/serial_unix.c drivers/cdrom/cdrom.h \
2.26 drivers/cdrom/cdrom.c drivers/cdrom/drive.h \
2.27 drivers/cdrom/sector.h drivers/cdrom/sector.c \
2.28 @@ -151,39 +151,97 @@
2.29 x86dasm/dis-asm.h x86dasm/symcat.h x86dasm/sysdep.h \
2.30 cocoaui/paths_osx.m drivers/io_osx.m drivers/mac_keymap.h \
2.31 drivers/mac_keymap.txt paths_unix.c drivers/io_glib.c
2.32 -@BUILD_SH4X86_TRUE@am__objects_1 = sh4x86.$(OBJEXT) sh4trans.$(OBJEXT) \
2.33 -@BUILD_SH4X86_TRUE@ mmux86.$(OBJEXT) shadow.$(OBJEXT) \
2.34 -@BUILD_SH4X86_TRUE@ x86dasm.$(OBJEXT) i386-dis.$(OBJEXT) \
2.35 -@BUILD_SH4X86_TRUE@ dis-init.$(OBJEXT) dis-buf.$(OBJEXT)
2.36 -@GUI_COCOA_TRUE@am__objects_2 = paths_osx.$(OBJEXT) io_osx.$(OBJEXT)
2.37 -@GUI_COCOA_FALSE@am__objects_3 = paths_unix.$(OBJEXT) \
2.38 -@GUI_COCOA_FALSE@ io_glib.$(OBJEXT)
2.39 -am_liblxdream_core_a_OBJECTS = version.$(OBJEXT) config.$(OBJEXT) \
2.40 - cpu.$(OBJEXT) mem.$(OBJEXT) sdram.$(OBJEXT) watch.$(OBJEXT) \
2.41 - asic.$(OBJEXT) syscall.$(OBJEXT) bios.$(OBJEXT) \
2.42 - dcload.$(OBJEXT) gdbserver.$(OBJEXT) ioutil.$(OBJEXT) \
2.43 - lxpaths.$(OBJEXT) ide.$(OBJEXT) gdrom.$(OBJEXT) \
2.44 - dreamcast.$(OBJEXT) eventq.$(OBJEXT) sh4.$(OBJEXT) \
2.45 - intc.$(OBJEXT) sh4mem.$(OBJEXT) timer.$(OBJEXT) dmac.$(OBJEXT) \
2.46 - mmu.$(OBJEXT) sh4core.$(OBJEXT) sh4dasm.$(OBJEXT) \
2.47 - sh4mmio.$(OBJEXT) scif.$(OBJEXT) sh4stat.$(OBJEXT) \
2.48 - xltcache.$(OBJEXT) pmm.$(OBJEXT) cache.$(OBJEXT) \
2.49 - armcore.$(OBJEXT) armdasm.$(OBJEXT) armmem.$(OBJEXT) \
2.50 - aica.$(OBJEXT) audio.$(OBJEXT) pvr2.$(OBJEXT) \
2.51 - pvr2mem.$(OBJEXT) tacore.$(OBJEXT) rendsort.$(OBJEXT) \
2.52 - texcache.$(OBJEXT) yuv.$(OBJEXT) rendsave.$(OBJEXT) \
2.53 - scene.$(OBJEXT) gl_sl.$(OBJEXT) glutil.$(OBJEXT) \
2.54 - glrender.$(OBJEXT) maple.$(OBJEXT) controller.$(OBJEXT) \
2.55 - kbd.$(OBJEXT) mouse.$(OBJEXT) lightgun.$(OBJEXT) vmu.$(OBJEXT) \
2.56 - loader.$(OBJEXT) bootstrap.$(OBJEXT) util.$(OBJEXT) \
2.57 - gdlist.$(OBJEXT) vmuvol.$(OBJEXT) vmulist.$(OBJEXT) \
2.58 - display.$(OBJEXT) audio_null.$(OBJEXT) video_null.$(OBJEXT) \
2.59 - video_gl.$(OBJEXT) gl_fbo.$(OBJEXT) gl_vbo.$(OBJEXT) \
2.60 - serial_unix.$(OBJEXT) cdrom.$(OBJEXT) sector.$(OBJEXT) \
2.61 - cd_nrg.$(OBJEXT) cd_cdi.$(OBJEXT) cd_gdi.$(OBJEXT) \
2.62 - edc_ecc.$(OBJEXT) drive.$(OBJEXT) cd_mmc.$(OBJEXT) \
2.63 - isofs.$(OBJEXT) isomem.$(OBJEXT) hotkeys.$(OBJEXT) \
2.64 - $(am__objects_1) $(am__objects_2) $(am__objects_3)
2.65 +@BUILD_SH4X86_TRUE@am__objects_1 = liblxdream_core_a-sh4x86.$(OBJEXT) \
2.66 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-sh4trans.$(OBJEXT) \
2.67 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-mmux86.$(OBJEXT) \
2.68 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-shadow.$(OBJEXT) \
2.69 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-x86dasm.$(OBJEXT) \
2.70 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-i386-dis.$(OBJEXT) \
2.71 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-dis-init.$(OBJEXT) \
2.72 +@BUILD_SH4X86_TRUE@ liblxdream_core_a-dis-buf.$(OBJEXT)
2.73 +@GUI_COCOA_TRUE@am__objects_2 = liblxdream_core_a-paths_osx.$(OBJEXT) \
2.74 +@GUI_COCOA_TRUE@ liblxdream_core_a-io_osx.$(OBJEXT)
2.75 +@GUI_COCOA_FALSE@am__objects_3 = \
2.76 +@GUI_COCOA_FALSE@ liblxdream_core_a-paths_unix.$(OBJEXT) \
2.77 +@GUI_COCOA_FALSE@ liblxdream_core_a-io_glib.$(OBJEXT)
2.78 +am_liblxdream_core_a_OBJECTS = liblxdream_core_a-version.$(OBJEXT) \
2.79 + liblxdream_core_a-config.$(OBJEXT) \
2.80 + liblxdream_core_a-cpu.$(OBJEXT) \
2.81 + liblxdream_core_a-mem.$(OBJEXT) \
2.82 + liblxdream_core_a-sdram.$(OBJEXT) \
2.83 + liblxdream_core_a-watch.$(OBJEXT) \
2.84 + liblxdream_core_a-asic.$(OBJEXT) \
2.85 + liblxdream_core_a-syscall.$(OBJEXT) \
2.86 + liblxdream_core_a-bios.$(OBJEXT) \
2.87 + liblxdream_core_a-dcload.$(OBJEXT) \
2.88 + liblxdream_core_a-gdbserver.$(OBJEXT) \
2.89 + liblxdream_core_a-ioutil.$(OBJEXT) \
2.90 + liblxdream_core_a-lxpaths.$(OBJEXT) \
2.91 + liblxdream_core_a-ide.$(OBJEXT) \
2.92 + liblxdream_core_a-gdrom.$(OBJEXT) \
2.93 + liblxdream_core_a-dreamcast.$(OBJEXT) \
2.94 + liblxdream_core_a-eventq.$(OBJEXT) \
2.95 + liblxdream_core_a-sh4.$(OBJEXT) \
2.96 + liblxdream_core_a-intc.$(OBJEXT) \
2.97 + liblxdream_core_a-sh4mem.$(OBJEXT) \
2.98 + liblxdream_core_a-timer.$(OBJEXT) \
2.99 + liblxdream_core_a-dmac.$(OBJEXT) \
2.100 + liblxdream_core_a-mmu.$(OBJEXT) \
2.101 + liblxdream_core_a-sh4core.$(OBJEXT) \
2.102 + liblxdream_core_a-sh4dasm.$(OBJEXT) \
2.103 + liblxdream_core_a-sh4mmio.$(OBJEXT) \
2.104 + liblxdream_core_a-scif.$(OBJEXT) \
2.105 + liblxdream_core_a-sh4stat.$(OBJEXT) \
2.106 + liblxdream_core_a-xltcache.$(OBJEXT) \
2.107 + liblxdream_core_a-pmm.$(OBJEXT) \
2.108 + liblxdream_core_a-cache.$(OBJEXT) \
2.109 + liblxdream_core_a-armcore.$(OBJEXT) \
2.110 + liblxdream_core_a-armdasm.$(OBJEXT) \
2.111 + liblxdream_core_a-armmem.$(OBJEXT) \
2.112 + liblxdream_core_a-aica.$(OBJEXT) \
2.113 + liblxdream_core_a-audio.$(OBJEXT) \
2.114 + liblxdream_core_a-pvr2.$(OBJEXT) \
2.115 + liblxdream_core_a-pvr2mem.$(OBJEXT) \
2.116 + liblxdream_core_a-tacore.$(OBJEXT) \
2.117 + liblxdream_core_a-rendsort.$(OBJEXT) \
2.118 + liblxdream_core_a-texcache.$(OBJEXT) \
2.119 + liblxdream_core_a-yuv.$(OBJEXT) \
2.120 + liblxdream_core_a-rendsave.$(OBJEXT) \
2.121 + liblxdream_core_a-scene.$(OBJEXT) \
2.122 + liblxdream_core_a-glutil.$(OBJEXT) \
2.123 + liblxdream_core_a-glrender.$(OBJEXT) \
2.124 + liblxdream_core_a-maple.$(OBJEXT) \
2.125 + liblxdream_core_a-controller.$(OBJEXT) \
2.126 + liblxdream_core_a-kbd.$(OBJEXT) \
2.127 + liblxdream_core_a-mouse.$(OBJEXT) \
2.128 + liblxdream_core_a-lightgun.$(OBJEXT) \
2.129 + liblxdream_core_a-vmu.$(OBJEXT) \
2.130 + liblxdream_core_a-loader.$(OBJEXT) \
2.131 + liblxdream_core_a-bootstrap.$(OBJEXT) \
2.132 + liblxdream_core_a-util.$(OBJEXT) \
2.133 + liblxdream_core_a-gdlist.$(OBJEXT) \
2.134 + liblxdream_core_a-vmuvol.$(OBJEXT) \
2.135 + liblxdream_core_a-vmulist.$(OBJEXT) \
2.136 + liblxdream_core_a-display.$(OBJEXT) \
2.137 + liblxdream_core_a-audio_null.$(OBJEXT) \
2.138 + liblxdream_core_a-video_null.$(OBJEXT) \
2.139 + liblxdream_core_a-video_gl.$(OBJEXT) \
2.140 + liblxdream_core_a-gl_fbo.$(OBJEXT) \
2.141 + liblxdream_core_a-gl_vbo.$(OBJEXT) \
2.142 + liblxdream_core_a-gl_sl.$(OBJEXT) \
2.143 + liblxdream_core_a-serial_unix.$(OBJEXT) \
2.144 + liblxdream_core_a-cdrom.$(OBJEXT) \
2.145 + liblxdream_core_a-sector.$(OBJEXT) \
2.146 + liblxdream_core_a-cd_nrg.$(OBJEXT) \
2.147 + liblxdream_core_a-cd_cdi.$(OBJEXT) \
2.148 + liblxdream_core_a-cd_gdi.$(OBJEXT) \
2.149 + liblxdream_core_a-edc_ecc.$(OBJEXT) \
2.150 + liblxdream_core_a-drive.$(OBJEXT) \
2.151 + liblxdream_core_a-cd_mmc.$(OBJEXT) \
2.152 + liblxdream_core_a-isofs.$(OBJEXT) \
2.153 + liblxdream_core_a-isomem.$(OBJEXT) \
2.154 + liblxdream_core_a-hotkeys.$(OBJEXT) $(am__objects_1) \
2.155 + $(am__objects_2) $(am__objects_3)
2.156 liblxdream_core_a_OBJECTS = $(am_liblxdream_core_a_OBJECTS)
2.157 am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkglibdir)"
2.158 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
2.159 @@ -240,42 +298,47 @@
2.160 drivers/osx_iokit.m drivers/osx_iokit.h \
2.161 drivers/cdrom/cd_none.c drivers/joy_linux.c \
2.162 drivers/joy_linux.h
2.163 -@BUILD_PLUGINS_TRUE@am__objects_4 = plugin.$(OBJEXT)
2.164 -@GUI_GTK_TRUE@am__objects_5 = gtkui.$(OBJEXT) gtk_win.$(OBJEXT) \
2.165 -@GUI_GTK_TRUE@ gtkcb.$(OBJEXT) gtk_cfg.$(OBJEXT) \
2.166 -@GUI_GTK_TRUE@ gtk_mmio.$(OBJEXT) gtk_debug.$(OBJEXT) \
2.167 -@GUI_GTK_TRUE@ gtk_dump.$(OBJEXT) gtk_ctrl.$(OBJEXT) \
2.168 -@GUI_GTK_TRUE@ gtk_gd.$(OBJEXT) video_gtk.$(OBJEXT)
2.169 -@GUI_ANDROID_TRUE@am__objects_6 = gui_none.$(OBJEXT) \
2.170 -@GUI_ANDROID_TRUE@ video_egl.$(OBJEXT)
2.171 -@GUI_COCOA_TRUE@am__objects_7 = cocoaui.$(OBJEXT) cocoa_cfg.$(OBJEXT) \
2.172 -@GUI_COCOA_TRUE@ cocoa_win.$(OBJEXT) cocoa_gd.$(OBJEXT) \
2.173 -@GUI_COCOA_TRUE@ cocoa_prefs.$(OBJEXT) cocoa_ctrl.$(OBJEXT) \
2.174 -@GUI_COCOA_TRUE@ video_osx.$(OBJEXT)
2.175 -@VIDEO_OSMESA_TRUE@am__objects_8 = video_gdk.$(OBJEXT)
2.176 -@VIDEO_GLX_TRUE@am__objects_9 = video_glx.$(OBJEXT)
2.177 -@VIDEO_NSGL_TRUE@am__objects_10 = video_nsgl.$(OBJEXT)
2.178 -@AUDIO_OSX_TRUE@am__objects_11 = audio_osx.$(OBJEXT)
2.179 -@AUDIO_SDL_TRUE@@BUILD_PLUGINS_FALSE@am__objects_12 = \
2.180 -@AUDIO_SDL_TRUE@@BUILD_PLUGINS_FALSE@ audio_sdl.$(OBJEXT)
2.181 -@AUDIO_PULSE_TRUE@@BUILD_PLUGINS_FALSE@am__objects_13 = \
2.182 -@AUDIO_PULSE_TRUE@@BUILD_PLUGINS_FALSE@ audio_pulse.$(OBJEXT)
2.183 -@AUDIO_ESOUND_TRUE@@BUILD_PLUGINS_FALSE@am__objects_14 = \
2.184 -@AUDIO_ESOUND_TRUE@@BUILD_PLUGINS_FALSE@ audio_esd.$(OBJEXT)
2.185 -@AUDIO_ALSA_TRUE@@BUILD_PLUGINS_FALSE@am__objects_15 = \
2.186 -@AUDIO_ALSA_TRUE@@BUILD_PLUGINS_FALSE@ audio_alsa.$(OBJEXT)
2.187 -@BUILD_PLUGINS_FALSE@@INPUT_LIRC_TRUE@am__objects_16 = \
2.188 -@BUILD_PLUGINS_FALSE@@INPUT_LIRC_TRUE@ input_lirc.$(OBJEXT)
2.189 -@CDROM_LINUX_TRUE@am__objects_17 = cd_linux.$(OBJEXT)
2.190 -@CDROM_OSX_TRUE@am__objects_18 = cd_osx.$(OBJEXT) osx_iokit.$(OBJEXT)
2.191 -@CDROM_NONE_TRUE@am__objects_19 = cd_none.$(OBJEXT)
2.192 -@JOY_LINUX_TRUE@am__objects_20 = joy_linux.$(OBJEXT)
2.193 -am_lxdream_OBJECTS = main.$(OBJEXT) $(am__objects_4) $(am__objects_5) \
2.194 - $(am__objects_6) $(am__objects_7) $(am__objects_8) \
2.195 - $(am__objects_9) $(am__objects_10) $(am__objects_11) \
2.196 - $(am__objects_12) $(am__objects_13) $(am__objects_14) \
2.197 - $(am__objects_15) $(am__objects_16) $(am__objects_17) \
2.198 - $(am__objects_18) $(am__objects_19) $(am__objects_20)
2.199 +@BUILD_PLUGINS_TRUE@am__objects_4 = lxdream-plugin.$(OBJEXT)
2.200 +@GUI_GTK_TRUE@am__objects_5 = lxdream-gtkui.$(OBJEXT) \
2.201 +@GUI_GTK_TRUE@ lxdream-gtk_win.$(OBJEXT) \
2.202 +@GUI_GTK_TRUE@ lxdream-gtkcb.$(OBJEXT) \
2.203 +@GUI_GTK_TRUE@ lxdream-gtk_cfg.$(OBJEXT) \
2.204 +@GUI_GTK_TRUE@ lxdream-gtk_mmio.$(OBJEXT) \
2.205 +@GUI_GTK_TRUE@ lxdream-gtk_debug.$(OBJEXT) \
2.206 +@GUI_GTK_TRUE@ lxdream-gtk_dump.$(OBJEXT) \
2.207 +@GUI_GTK_TRUE@ lxdream-gtk_ctrl.$(OBJEXT) \
2.208 +@GUI_GTK_TRUE@ lxdream-gtk_gd.$(OBJEXT) \
2.209 +@GUI_GTK_TRUE@ lxdream-video_gtk.$(OBJEXT)
2.210 +@GUI_ANDROID_TRUE@am__objects_6 = lxdream-gui_none.$(OBJEXT) \
2.211 +@GUI_ANDROID_TRUE@ lxdream-video_egl.$(OBJEXT)
2.212 +@GUI_COCOA_TRUE@am__objects_7 = lxdream-cocoaui.$(OBJEXT) \
2.213 +@GUI_COCOA_TRUE@ lxdream-cocoa_cfg.$(OBJEXT) \
2.214 +@GUI_COCOA_TRUE@ lxdream-cocoa_win.$(OBJEXT) \
2.215 +@GUI_COCOA_TRUE@ lxdream-cocoa_gd.$(OBJEXT) \
2.216 +@GUI_COCOA_TRUE@ lxdream-cocoa_prefs.$(OBJEXT) \
2.217 +@GUI_COCOA_TRUE@ lxdream-cocoa_ctrl.$(OBJEXT) \
2.218 +@GUI_COCOA_TRUE@ lxdream-video_osx.$(OBJEXT)
2.219 +@VIDEO_OSMESA_TRUE@am__objects_8 = lxdream-video_gdk.$(OBJEXT)
2.220 +@VIDEO_GLX_TRUE@am__objects_9 = lxdream-video_glx.$(OBJEXT)
2.221 +@VIDEO_NSGL_TRUE@am__objects_10 = lxdream-video_nsgl.$(OBJEXT)
2.222 +@AUDIO_OSX_TRUE@am__objects_11 = lxdream-audio_osx.$(OBJEXT)
2.223 +@AUDIO_SDL_TRUE@@BUILD_PLUGINS_FALSE@am__objects_12 = lxdream-audio_sdl.$(OBJEXT)
2.224 +@AUDIO_PULSE_TRUE@@BUILD_PLUGINS_FALSE@am__objects_13 = lxdream-audio_pulse.$(OBJEXT)
2.225 +@AUDIO_ESOUND_TRUE@@BUILD_PLUGINS_FALSE@am__objects_14 = lxdream-audio_esd.$(OBJEXT)
2.226 +@AUDIO_ALSA_TRUE@@BUILD_PLUGINS_FALSE@am__objects_15 = lxdream-audio_alsa.$(OBJEXT)
2.227 +@BUILD_PLUGINS_FALSE@@INPUT_LIRC_TRUE@am__objects_16 = lxdream-input_lirc.$(OBJEXT)
2.228 +@CDROM_LINUX_TRUE@am__objects_17 = lxdream-cd_linux.$(OBJEXT)
2.229 +@CDROM_OSX_TRUE@am__objects_18 = lxdream-cd_osx.$(OBJEXT) \
2.230 +@CDROM_OSX_TRUE@ lxdream-osx_iokit.$(OBJEXT)
2.231 +@CDROM_NONE_TRUE@am__objects_19 = lxdream-cd_none.$(OBJEXT)
2.232 +@JOY_LINUX_TRUE@am__objects_20 = lxdream-joy_linux.$(OBJEXT)
2.233 +am_lxdream_OBJECTS = lxdream-main.$(OBJEXT) $(am__objects_4) \
2.234 + $(am__objects_5) $(am__objects_6) $(am__objects_7) \
2.235 + $(am__objects_8) $(am__objects_9) $(am__objects_10) \
2.236 + $(am__objects_11) $(am__objects_12) $(am__objects_13) \
2.237 + $(am__objects_14) $(am__objects_15) $(am__objects_16) \
2.238 + $(am__objects_17) $(am__objects_18) $(am__objects_19) \
2.239 + $(am__objects_20)
2.240 lxdream_OBJECTS = $(am_lxdream_OBJECTS)
2.241 lxdream_DEPENDENCIES = liblxdream-core.a $(am__DEPENDENCIES_1) \
2.242 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
2.243 @@ -568,7 +631,6 @@
2.244 audio_alsa.lo audio_sdl.lo audio_esd.lo audio_pulse.lo input_lirc.lo \
2.245 lxdream_dummy.lo
2.246
2.247 -AM_CPPFLAGS = @LXDREAMCPPFLAGS@
2.248 lxdream_LINK = $(LINK) @LXDREAMLDFLAGS@
2.249 lxdream_LDADD = liblxdream-core.a @GLIB_LIBS@ @GTK_LIBS@ @LIBPNG_LIBS@ \
2.250 @LIBISOFS_LIBS@ $(INTLLIBS) @LXDREAM_LIBS@ $(am__append_20) \
2.251 @@ -581,7 +643,9 @@
2.252 $(am__append_25) $(am__append_27) $(am__append_29) \
2.253 $(am__append_30) $(am__append_31) $(am__append_32)
2.254 lxdream_LIBS = liblxdream-core.a
2.255 +lxdream_CPPFLAGS = @LXDREAMCPPFLAGS@
2.256 noinst_LIBRARIES = liblxdream-core.a
2.257 +liblxdream_core_a_CPPFLAGS = @LXDREAMCPPFLAGS@
2.258 liblxdream_core_a_SOURCES = version.c config.c config.h lxdream.h \
2.259 dream.h gui.h cpu.c cpu.h hook.h gettext.h mem.c mem.h sdram.c \
2.260 mmio.h watch.c asic.c asic.h clock.h serial.h syscall.c \
2.261 @@ -598,15 +662,15 @@
2.262 aica/audio.c aica/audio.h pvr2/pvr2.c pvr2/pvr2.h \
2.263 pvr2/pvr2mem.c pvr2/pvr2mmio.h pvr2/tacore.c pvr2/rendsort.c \
2.264 pvr2/tileiter.h pvr2/shaders.glsl pvr2/texcache.c pvr2/yuv.c \
2.265 - pvr2/rendsave.c pvr2/scene.c pvr2/scene.h pvr2/gl_sl.c \
2.266 - pvr2/shaders.h pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h \
2.267 - pvr2/glrender.c maple/maple.c maple/maple.h maple/controller.c \
2.268 - maple/kbd.c maple/mouse.c maple/lightgun.c maple/vmu.c \
2.269 - loader.c loader.h elf.h bootstrap.c bootstrap.h util.c \
2.270 - gdlist.c gdlist.h vmu/vmuvol.c vmu/vmuvol.h vmu/vmulist.c \
2.271 - vmu/vmulist.h display.c display.h dckeysyms.h \
2.272 - drivers/audio_null.c drivers/video_null.c drivers/video_gl.c \
2.273 - drivers/video_gl.h drivers/gl_fbo.c drivers/gl_vbo.c \
2.274 + pvr2/rendsave.c pvr2/scene.c pvr2/scene.h pvr2/shaders.h \
2.275 + pvr2/shaders.def pvr2/glutil.c pvr2/glutil.h pvr2/glrender.c \
2.276 + maple/maple.c maple/maple.h maple/controller.c maple/kbd.c \
2.277 + maple/mouse.c maple/lightgun.c maple/vmu.c loader.c loader.h \
2.278 + elf.h bootstrap.c bootstrap.h util.c gdlist.c gdlist.h \
2.279 + vmu/vmuvol.c vmu/vmuvol.h vmu/vmulist.c vmu/vmulist.h \
2.280 + display.c display.h dckeysyms.h drivers/audio_null.c \
2.281 + drivers/video_null.c drivers/video_gl.c drivers/video_gl.h \
2.282 + drivers/gl_fbo.c drivers/gl_vbo.c drivers/gl_sl.c \
2.283 drivers/serial_unix.c drivers/cdrom/cdrom.h \
2.284 drivers/cdrom/cdrom.c drivers/cdrom/drive.h \
2.285 drivers/cdrom/sector.h drivers/cdrom/sector.c \
2.286 @@ -792,135 +856,149 @@
2.287 distclean-compile:
2.288 -rm -f *.tab.c
2.289
2.290 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aica.Po@am__quote@
2.291 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armcore.Po@am__quote@
2.292 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armdasm.Po@am__quote@
2.293 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/armmem.Po@am__quote@
2.294 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asic.Po@am__quote@
2.295 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio.Po@am__quote@
2.296 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_alsa.Po@am__quote@
2.297 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_esd.Po@am__quote@
2.298 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_null.Po@am__quote@
2.299 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_osx.Po@am__quote@
2.300 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_pulse.Po@am__quote@
2.301 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio_sdl.Po@am__quote@
2.302 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bios.Po@am__quote@
2.303 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bootstrap.Po@am__quote@
2.304 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cache.Po@am__quote@
2.305 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_cdi.Po@am__quote@
2.306 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_gdi.Po@am__quote@
2.307 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_linux.Po@am__quote@
2.308 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_mmc.Po@am__quote@
2.309 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_none.Po@am__quote@
2.310 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_nrg.Po@am__quote@
2.311 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cd_osx.Po@am__quote@
2.312 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdrom.Po@am__quote@
2.313 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoa_cfg.Po@am__quote@
2.314 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoa_ctrl.Po@am__quote@
2.315 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoa_gd.Po@am__quote@
2.316 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoa_prefs.Po@am__quote@
2.317 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoa_win.Po@am__quote@
2.318 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cocoaui.Po@am__quote@
2.319 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Po@am__quote@
2.320 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/controller.Po@am__quote@
2.321 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu.Po@am__quote@
2.322 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dcload.Po@am__quote@
2.323 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dis-buf.Po@am__quote@
2.324 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dis-init.Po@am__quote@
2.325 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/display.Po@am__quote@
2.326 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dmac.Po@am__quote@
2.327 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dreamcast.Po@am__quote@
2.328 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drive.Po@am__quote@
2.329 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/edc_ecc.Po@am__quote@
2.330 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eventq.Po@am__quote@
2.331 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdbserver.Po@am__quote@
2.332 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdlist.Po@am__quote@
2.333 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdrom.Po@am__quote@
2.334 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gl_fbo.Po@am__quote@
2.335 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gl_sl.Po@am__quote@
2.336 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gl_vbo.Po@am__quote@
2.337 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glrender.Po@am__quote@
2.338 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glutil.Po@am__quote@
2.339 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_cfg.Po@am__quote@
2.340 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_ctrl.Po@am__quote@
2.341 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_debug.Po@am__quote@
2.342 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_dump.Po@am__quote@
2.343 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_gd.Po@am__quote@
2.344 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_mmio.Po@am__quote@
2.345 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_win.Po@am__quote@
2.346 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkcb.Po@am__quote@
2.347 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkui.Po@am__quote@
2.348 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gui_android.Po@am__quote@
2.349 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gui_none.Po@am__quote@
2.350 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hotkeys.Po@am__quote@
2.351 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i386-dis.Po@am__quote@
2.352 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ide.Po@am__quote@
2.353 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/input_lirc.Po@am__quote@
2.354 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/intc.Po@am__quote@
2.355 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io_glib.Po@am__quote@
2.356 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io_osx.Po@am__quote@
2.357 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ioutil.Po@am__quote@
2.358 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isofs.Po@am__quote@
2.359 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isomem.Po@am__quote@
2.360 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/joy_linux.Po@am__quote@
2.361 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kbd.Po@am__quote@
2.362 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lightgun.Po@am__quote@
2.363 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loader.Po@am__quote@
2.364 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-aica.Po@am__quote@
2.365 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-armcore.Po@am__quote@
2.366 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-armdasm.Po@am__quote@
2.367 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-armmem.Po@am__quote@
2.368 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-asic.Po@am__quote@
2.369 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-audio.Po@am__quote@
2.370 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-audio_null.Po@am__quote@
2.371 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-bios.Po@am__quote@
2.372 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-bootstrap.Po@am__quote@
2.373 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cache.Po@am__quote@
2.374 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cd_cdi.Po@am__quote@
2.375 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cd_gdi.Po@am__quote@
2.376 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cd_mmc.Po@am__quote@
2.377 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cd_nrg.Po@am__quote@
2.378 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cdrom.Po@am__quote@
2.379 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-config.Po@am__quote@
2.380 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-controller.Po@am__quote@
2.381 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-cpu.Po@am__quote@
2.382 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-dcload.Po@am__quote@
2.383 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-dis-buf.Po@am__quote@
2.384 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-dis-init.Po@am__quote@
2.385 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-display.Po@am__quote@
2.386 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-dmac.Po@am__quote@
2.387 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-dreamcast.Po@am__quote@
2.388 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-drive.Po@am__quote@
2.389 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-edc_ecc.Po@am__quote@
2.390 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-eventq.Po@am__quote@
2.391 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gdbserver.Po@am__quote@
2.392 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gdlist.Po@am__quote@
2.393 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gdrom.Po@am__quote@
2.394 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gl_fbo.Po@am__quote@
2.395 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gl_sl.Po@am__quote@
2.396 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-gl_vbo.Po@am__quote@
2.397 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-glrender.Po@am__quote@
2.398 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-glutil.Po@am__quote@
2.399 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-hotkeys.Po@am__quote@
2.400 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-i386-dis.Po@am__quote@
2.401 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-ide.Po@am__quote@
2.402 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-intc.Po@am__quote@
2.403 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-io_glib.Po@am__quote@
2.404 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-io_osx.Po@am__quote@
2.405 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-ioutil.Po@am__quote@
2.406 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-isofs.Po@am__quote@
2.407 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-isomem.Po@am__quote@
2.408 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-kbd.Po@am__quote@
2.409 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-lightgun.Po@am__quote@
2.410 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-loader.Po@am__quote@
2.411 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-lxpaths.Po@am__quote@
2.412 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-maple.Po@am__quote@
2.413 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-mem.Po@am__quote@
2.414 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-mmu.Po@am__quote@
2.415 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-mmux86.Po@am__quote@
2.416 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-mouse.Po@am__quote@
2.417 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-paths_osx.Po@am__quote@
2.418 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-paths_unix.Po@am__quote@
2.419 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-pmm.Po@am__quote@
2.420 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-pvr2.Po@am__quote@
2.421 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-pvr2mem.Po@am__quote@
2.422 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-rendsave.Po@am__quote@
2.423 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-rendsort.Po@am__quote@
2.424 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-scene.Po@am__quote@
2.425 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-scif.Po@am__quote@
2.426 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sdram.Po@am__quote@
2.427 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sector.Po@am__quote@
2.428 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-serial_unix.Po@am__quote@
2.429 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4.Po@am__quote@
2.430 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4core.Po@am__quote@
2.431 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4dasm.Po@am__quote@
2.432 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4mem.Po@am__quote@
2.433 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4mmio.Po@am__quote@
2.434 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4stat.Po@am__quote@
2.435 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4trans.Po@am__quote@
2.436 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-sh4x86.Po@am__quote@
2.437 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-shadow.Po@am__quote@
2.438 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-syscall.Po@am__quote@
2.439 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-tacore.Po@am__quote@
2.440 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-texcache.Po@am__quote@
2.441 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-timer.Po@am__quote@
2.442 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-util.Po@am__quote@
2.443 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-version.Po@am__quote@
2.444 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-video_gl.Po@am__quote@
2.445 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-video_null.Po@am__quote@
2.446 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-vmu.Po@am__quote@
2.447 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-vmulist.Po@am__quote@
2.448 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-vmuvol.Po@am__quote@
2.449 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-watch.Po@am__quote@
2.450 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-x86dasm.Po@am__quote@
2.451 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-xltcache.Po@am__quote@
2.452 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxdream_core_a-yuv.Po@am__quote@
2.453 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-audio_alsa.Po@am__quote@
2.454 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-audio_esd.Po@am__quote@
2.455 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-audio_osx.Po@am__quote@
2.456 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-audio_pulse.Po@am__quote@
2.457 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-audio_sdl.Po@am__quote@
2.458 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cd_linux.Po@am__quote@
2.459 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cd_none.Po@am__quote@
2.460 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cd_osx.Po@am__quote@
2.461 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoa_cfg.Po@am__quote@
2.462 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoa_ctrl.Po@am__quote@
2.463 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoa_gd.Po@am__quote@
2.464 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoa_prefs.Po@am__quote@
2.465 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoa_win.Po@am__quote@
2.466 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-cocoaui.Po@am__quote@
2.467 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_cfg.Po@am__quote@
2.468 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_ctrl.Po@am__quote@
2.469 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_debug.Po@am__quote@
2.470 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_dump.Po@am__quote@
2.471 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_gd.Po@am__quote@
2.472 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_mmio.Po@am__quote@
2.473 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtk_win.Po@am__quote@
2.474 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtkcb.Po@am__quote@
2.475 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gtkui.Po@am__quote@
2.476 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-gui_none.Po@am__quote@
2.477 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-input_lirc.Po@am__quote@
2.478 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-joy_linux.Po@am__quote@
2.479 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-main.Po@am__quote@
2.480 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-osx_iokit.Po@am__quote@
2.481 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-plugin.Po@am__quote@
2.482 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_egl.Po@am__quote@
2.483 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_gdk.Po@am__quote@
2.484 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_glx.Po@am__quote@
2.485 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_gtk.Po@am__quote@
2.486 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_nsgl.Po@am__quote@
2.487 +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxdream-video_osx.Po@am__quote@
2.488 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpaths.Po@am__quote@
2.489 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
2.490 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maple.Po@am__quote@
2.491 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mem.Po@am__quote@
2.492 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmu.Po@am__quote@
2.493 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmux86.Po@am__quote@
2.494 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mouse.Po@am__quote@
2.495 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/osx_iokit.Po@am__quote@
2.496 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paths_osx.Po@am__quote@
2.497 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paths_unix.Po@am__quote@
2.498 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plugin.Po@am__quote@
2.499 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pmm.Po@am__quote@
2.500 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pvr2.Po@am__quote@
2.501 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pvr2mem.Po@am__quote@
2.502 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rendsave.Po@am__quote@
2.503 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rendsort.Po@am__quote@
2.504 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene.Po@am__quote@
2.505 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scif.Po@am__quote@
2.506 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sdram.Po@am__quote@
2.507 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sector.Po@am__quote@
2.508 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/serial_unix.Po@am__quote@
2.509 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4.Po@am__quote@
2.510 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4core.Po@am__quote@
2.511 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4dasm.Po@am__quote@
2.512 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4mem.Po@am__quote@
2.513 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4mmio.Po@am__quote@
2.514 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4stat.Po@am__quote@
2.515 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4trans.Po@am__quote@
2.516 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sh4x86.Po@am__quote@
2.517 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadow.Po@am__quote@
2.518 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/syscall.Po@am__quote@
2.519 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tacore.Po@am__quote@
2.520 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testlxpaths.Po@am__quote@
2.521 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testsh4x86.Po@am__quote@
2.522 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testxlt.Po@am__quote@
2.523 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/texcache.Po@am__quote@
2.524 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timer.Po@am__quote@
2.525 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tqueue.Po@am__quote@
2.526 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Po@am__quote@
2.527 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Po@am__quote@
2.528 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_egl.Po@am__quote@
2.529 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_gdk.Po@am__quote@
2.530 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_gl.Po@am__quote@
2.531 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_glx.Po@am__quote@
2.532 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_gtk.Po@am__quote@
2.533 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_nsgl.Po@am__quote@
2.534 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_null.Po@am__quote@
2.535 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/video_osx.Po@am__quote@
2.536 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vmu.Po@am__quote@
2.537 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vmulist.Po@am__quote@
2.538 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vmuvol.Po@am__quote@
2.539 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/watch.Po@am__quote@
2.540 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86dasm.Po@am__quote@
2.541 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xltcache.Po@am__quote@
2.542 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yuv.Po@am__quote@
2.543
2.544 .c.o:
2.545 @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
2.546 @@ -936,845 +1014,1629 @@
2.547 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.548 @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
2.549
2.550 -ide.o: gdrom/ide.c
2.551 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ide.o -MD -MP -MF "$(DEPDIR)/ide.Tpo" -c -o ide.o `test -f 'gdrom/ide.c' || echo '$(srcdir)/'`gdrom/ide.c; \
2.552 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/ide.Tpo" "$(DEPDIR)/ide.Po"; else rm -f "$(DEPDIR)/ide.Tpo"; exit 1; fi
2.553 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/ide.c' object='ide.o' libtool=no @AMDEPBACKSLASH@
2.554 +liblxdream_core_a-version.o: version.c
2.555 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-version.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-version.Tpo" -c -o liblxdream_core_a-version.o `test -f 'version.c' || echo '$(srcdir)/'`version.c; \
2.556 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-version.Tpo" "$(DEPDIR)/liblxdream_core_a-version.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-version.Tpo"; exit 1; fi
2.557 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='version.c' object='liblxdream_core_a-version.o' libtool=no @AMDEPBACKSLASH@
2.558 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.559 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ide.o `test -f 'gdrom/ide.c' || echo '$(srcdir)/'`gdrom/ide.c
2.560 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-version.o `test -f 'version.c' || echo '$(srcdir)/'`version.c
2.561
2.562 -ide.obj: gdrom/ide.c
2.563 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ide.obj -MD -MP -MF "$(DEPDIR)/ide.Tpo" -c -o ide.obj `if test -f 'gdrom/ide.c'; then $(CYGPATH_W) 'gdrom/ide.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/ide.c'; fi`; \
2.564 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/ide.Tpo" "$(DEPDIR)/ide.Po"; else rm -f "$(DEPDIR)/ide.Tpo"; exit 1; fi
2.565 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/ide.c' object='ide.obj' libtool=no @AMDEPBACKSLASH@
2.566 +liblxdream_core_a-version.obj: version.c
2.567 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-version.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-version.Tpo" -c -o liblxdream_core_a-version.obj `if test -f 'version.c'; then $(CYGPATH_W) 'version.c'; else $(CYGPATH_W) '$(srcdir)/version.c'; fi`; \
2.568 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-version.Tpo" "$(DEPDIR)/liblxdream_core_a-version.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-version.Tpo"; exit 1; fi
2.569 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='version.c' object='liblxdream_core_a-version.obj' libtool=no @AMDEPBACKSLASH@
2.570 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.571 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ide.obj `if test -f 'gdrom/ide.c'; then $(CYGPATH_W) 'gdrom/ide.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/ide.c'; fi`
2.572 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-version.obj `if test -f 'version.c'; then $(CYGPATH_W) 'version.c'; else $(CYGPATH_W) '$(srcdir)/version.c'; fi`
2.573
2.574 -gdrom.o: gdrom/gdrom.c
2.575 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdrom.o -MD -MP -MF "$(DEPDIR)/gdrom.Tpo" -c -o gdrom.o `test -f 'gdrom/gdrom.c' || echo '$(srcdir)/'`gdrom/gdrom.c; \
2.576 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gdrom.Tpo" "$(DEPDIR)/gdrom.Po"; else rm -f "$(DEPDIR)/gdrom.Tpo"; exit 1; fi
2.577 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/gdrom.c' object='gdrom.o' libtool=no @AMDEPBACKSLASH@
2.578 +liblxdream_core_a-config.o: config.c
2.579 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-config.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-config.Tpo" -c -o liblxdream_core_a-config.o `test -f 'config.c' || echo '$(srcdir)/'`config.c; \
2.580 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-config.Tpo" "$(DEPDIR)/liblxdream_core_a-config.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-config.Tpo"; exit 1; fi
2.581 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config.c' object='liblxdream_core_a-config.o' libtool=no @AMDEPBACKSLASH@
2.582 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.583 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdrom.o `test -f 'gdrom/gdrom.c' || echo '$(srcdir)/'`gdrom/gdrom.c
2.584 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-config.o `test -f 'config.c' || echo '$(srcdir)/'`config.c
2.585
2.586 -gdrom.obj: gdrom/gdrom.c
2.587 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdrom.obj -MD -MP -MF "$(DEPDIR)/gdrom.Tpo" -c -o gdrom.obj `if test -f 'gdrom/gdrom.c'; then $(CYGPATH_W) 'gdrom/gdrom.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/gdrom.c'; fi`; \
2.588 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gdrom.Tpo" "$(DEPDIR)/gdrom.Po"; else rm -f "$(DEPDIR)/gdrom.Tpo"; exit 1; fi
2.589 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/gdrom.c' object='gdrom.obj' libtool=no @AMDEPBACKSLASH@
2.590 +liblxdream_core_a-config.obj: config.c
2.591 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-config.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-config.Tpo" -c -o liblxdream_core_a-config.obj `if test -f 'config.c'; then $(CYGPATH_W) 'config.c'; else $(CYGPATH_W) '$(srcdir)/config.c'; fi`; \
2.592 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-config.Tpo" "$(DEPDIR)/liblxdream_core_a-config.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-config.Tpo"; exit 1; fi
2.593 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config.c' object='liblxdream_core_a-config.obj' libtool=no @AMDEPBACKSLASH@
2.594 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.595 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdrom.obj `if test -f 'gdrom/gdrom.c'; then $(CYGPATH_W) 'gdrom/gdrom.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/gdrom.c'; fi`
2.596 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-config.obj `if test -f 'config.c'; then $(CYGPATH_W) 'config.c'; else $(CYGPATH_W) '$(srcdir)/config.c'; fi`
2.597
2.598 -sh4.o: sh4/sh4.c
2.599 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4.o -MD -MP -MF "$(DEPDIR)/sh4.Tpo" -c -o sh4.o `test -f 'sh4/sh4.c' || echo '$(srcdir)/'`sh4/sh4.c; \
2.600 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4.Tpo" "$(DEPDIR)/sh4.Po"; else rm -f "$(DEPDIR)/sh4.Tpo"; exit 1; fi
2.601 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4.c' object='sh4.o' libtool=no @AMDEPBACKSLASH@
2.602 +liblxdream_core_a-cpu.o: cpu.c
2.603 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cpu.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cpu.Tpo" -c -o liblxdream_core_a-cpu.o `test -f 'cpu.c' || echo '$(srcdir)/'`cpu.c; \
2.604 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cpu.Tpo" "$(DEPDIR)/liblxdream_core_a-cpu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cpu.Tpo"; exit 1; fi
2.605 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cpu.c' object='liblxdream_core_a-cpu.o' libtool=no @AMDEPBACKSLASH@
2.606 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.607 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4.o `test -f 'sh4/sh4.c' || echo '$(srcdir)/'`sh4/sh4.c
2.608 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cpu.o `test -f 'cpu.c' || echo '$(srcdir)/'`cpu.c
2.609
2.610 -sh4.obj: sh4/sh4.c
2.611 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4.obj -MD -MP -MF "$(DEPDIR)/sh4.Tpo" -c -o sh4.obj `if test -f 'sh4/sh4.c'; then $(CYGPATH_W) 'sh4/sh4.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4.c'; fi`; \
2.612 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4.Tpo" "$(DEPDIR)/sh4.Po"; else rm -f "$(DEPDIR)/sh4.Tpo"; exit 1; fi
2.613 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4.c' object='sh4.obj' libtool=no @AMDEPBACKSLASH@
2.614 +liblxdream_core_a-cpu.obj: cpu.c
2.615 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cpu.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cpu.Tpo" -c -o liblxdream_core_a-cpu.obj `if test -f 'cpu.c'; then $(CYGPATH_W) 'cpu.c'; else $(CYGPATH_W) '$(srcdir)/cpu.c'; fi`; \
2.616 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cpu.Tpo" "$(DEPDIR)/liblxdream_core_a-cpu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cpu.Tpo"; exit 1; fi
2.617 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cpu.c' object='liblxdream_core_a-cpu.obj' libtool=no @AMDEPBACKSLASH@
2.618 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.619 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4.obj `if test -f 'sh4/sh4.c'; then $(CYGPATH_W) 'sh4/sh4.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4.c'; fi`
2.620 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cpu.obj `if test -f 'cpu.c'; then $(CYGPATH_W) 'cpu.c'; else $(CYGPATH_W) '$(srcdir)/cpu.c'; fi`
2.621
2.622 -intc.o: sh4/intc.c
2.623 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intc.o -MD -MP -MF "$(DEPDIR)/intc.Tpo" -c -o intc.o `test -f 'sh4/intc.c' || echo '$(srcdir)/'`sh4/intc.c; \
2.624 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/intc.Tpo" "$(DEPDIR)/intc.Po"; else rm -f "$(DEPDIR)/intc.Tpo"; exit 1; fi
2.625 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/intc.c' object='intc.o' libtool=no @AMDEPBACKSLASH@
2.626 +liblxdream_core_a-mem.o: mem.c
2.627 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mem.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mem.Tpo" -c -o liblxdream_core_a-mem.o `test -f 'mem.c' || echo '$(srcdir)/'`mem.c; \
2.628 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mem.Tpo" "$(DEPDIR)/liblxdream_core_a-mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mem.Tpo"; exit 1; fi
2.629 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mem.c' object='liblxdream_core_a-mem.o' libtool=no @AMDEPBACKSLASH@
2.630 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.631 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intc.o `test -f 'sh4/intc.c' || echo '$(srcdir)/'`sh4/intc.c
2.632 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mem.o `test -f 'mem.c' || echo '$(srcdir)/'`mem.c
2.633
2.634 -intc.obj: sh4/intc.c
2.635 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intc.obj -MD -MP -MF "$(DEPDIR)/intc.Tpo" -c -o intc.obj `if test -f 'sh4/intc.c'; then $(CYGPATH_W) 'sh4/intc.c'; else $(CYGPATH_W) '$(srcdir)/sh4/intc.c'; fi`; \
2.636 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/intc.Tpo" "$(DEPDIR)/intc.Po"; else rm -f "$(DEPDIR)/intc.Tpo"; exit 1; fi
2.637 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/intc.c' object='intc.obj' libtool=no @AMDEPBACKSLASH@
2.638 +liblxdream_core_a-mem.obj: mem.c
2.639 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mem.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mem.Tpo" -c -o liblxdream_core_a-mem.obj `if test -f 'mem.c'; then $(CYGPATH_W) 'mem.c'; else $(CYGPATH_W) '$(srcdir)/mem.c'; fi`; \
2.640 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mem.Tpo" "$(DEPDIR)/liblxdream_core_a-mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mem.Tpo"; exit 1; fi
2.641 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mem.c' object='liblxdream_core_a-mem.obj' libtool=no @AMDEPBACKSLASH@
2.642 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.643 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intc.obj `if test -f 'sh4/intc.c'; then $(CYGPATH_W) 'sh4/intc.c'; else $(CYGPATH_W) '$(srcdir)/sh4/intc.c'; fi`
2.644 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mem.obj `if test -f 'mem.c'; then $(CYGPATH_W) 'mem.c'; else $(CYGPATH_W) '$(srcdir)/mem.c'; fi`
2.645
2.646 -sh4mem.o: sh4/sh4mem.c
2.647 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4mem.o -MD -MP -MF "$(DEPDIR)/sh4mem.Tpo" -c -o sh4mem.o `test -f 'sh4/sh4mem.c' || echo '$(srcdir)/'`sh4/sh4mem.c; \
2.648 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4mem.Tpo" "$(DEPDIR)/sh4mem.Po"; else rm -f "$(DEPDIR)/sh4mem.Tpo"; exit 1; fi
2.649 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mem.c' object='sh4mem.o' libtool=no @AMDEPBACKSLASH@
2.650 +liblxdream_core_a-sdram.o: sdram.c
2.651 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sdram.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sdram.Tpo" -c -o liblxdream_core_a-sdram.o `test -f 'sdram.c' || echo '$(srcdir)/'`sdram.c; \
2.652 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sdram.Tpo" "$(DEPDIR)/liblxdream_core_a-sdram.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sdram.Tpo"; exit 1; fi
2.653 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sdram.c' object='liblxdream_core_a-sdram.o' libtool=no @AMDEPBACKSLASH@
2.654 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.655 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4mem.o `test -f 'sh4/sh4mem.c' || echo '$(srcdir)/'`sh4/sh4mem.c
2.656 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sdram.o `test -f 'sdram.c' || echo '$(srcdir)/'`sdram.c
2.657
2.658 -sh4mem.obj: sh4/sh4mem.c
2.659 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4mem.obj -MD -MP -MF "$(DEPDIR)/sh4mem.Tpo" -c -o sh4mem.obj `if test -f 'sh4/sh4mem.c'; then $(CYGPATH_W) 'sh4/sh4mem.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mem.c'; fi`; \
2.660 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4mem.Tpo" "$(DEPDIR)/sh4mem.Po"; else rm -f "$(DEPDIR)/sh4mem.Tpo"; exit 1; fi
2.661 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mem.c' object='sh4mem.obj' libtool=no @AMDEPBACKSLASH@
2.662 +liblxdream_core_a-sdram.obj: sdram.c
2.663 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sdram.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sdram.Tpo" -c -o liblxdream_core_a-sdram.obj `if test -f 'sdram.c'; then $(CYGPATH_W) 'sdram.c'; else $(CYGPATH_W) '$(srcdir)/sdram.c'; fi`; \
2.664 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sdram.Tpo" "$(DEPDIR)/liblxdream_core_a-sdram.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sdram.Tpo"; exit 1; fi
2.665 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sdram.c' object='liblxdream_core_a-sdram.obj' libtool=no @AMDEPBACKSLASH@
2.666 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.667 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4mem.obj `if test -f 'sh4/sh4mem.c'; then $(CYGPATH_W) 'sh4/sh4mem.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mem.c'; fi`
2.668 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sdram.obj `if test -f 'sdram.c'; then $(CYGPATH_W) 'sdram.c'; else $(CYGPATH_W) '$(srcdir)/sdram.c'; fi`
2.669
2.670 -timer.o: sh4/timer.c
2.671 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timer.o -MD -MP -MF "$(DEPDIR)/timer.Tpo" -c -o timer.o `test -f 'sh4/timer.c' || echo '$(srcdir)/'`sh4/timer.c; \
2.672 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/timer.Tpo" "$(DEPDIR)/timer.Po"; else rm -f "$(DEPDIR)/timer.Tpo"; exit 1; fi
2.673 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/timer.c' object='timer.o' libtool=no @AMDEPBACKSLASH@
2.674 +liblxdream_core_a-watch.o: watch.c
2.675 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-watch.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-watch.Tpo" -c -o liblxdream_core_a-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c; \
2.676 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-watch.Tpo" "$(DEPDIR)/liblxdream_core_a-watch.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-watch.Tpo"; exit 1; fi
2.677 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='watch.c' object='liblxdream_core_a-watch.o' libtool=no @AMDEPBACKSLASH@
2.678 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.679 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o timer.o `test -f 'sh4/timer.c' || echo '$(srcdir)/'`sh4/timer.c
2.680 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c
2.681
2.682 -timer.obj: sh4/timer.c
2.683 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timer.obj -MD -MP -MF "$(DEPDIR)/timer.Tpo" -c -o timer.obj `if test -f 'sh4/timer.c'; then $(CYGPATH_W) 'sh4/timer.c'; else $(CYGPATH_W) '$(srcdir)/sh4/timer.c'; fi`; \
2.684 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/timer.Tpo" "$(DEPDIR)/timer.Po"; else rm -f "$(DEPDIR)/timer.Tpo"; exit 1; fi
2.685 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/timer.c' object='timer.obj' libtool=no @AMDEPBACKSLASH@
2.686 +liblxdream_core_a-watch.obj: watch.c
2.687 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-watch.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-watch.Tpo" -c -o liblxdream_core_a-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`; \
2.688 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-watch.Tpo" "$(DEPDIR)/liblxdream_core_a-watch.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-watch.Tpo"; exit 1; fi
2.689 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='watch.c' object='liblxdream_core_a-watch.obj' libtool=no @AMDEPBACKSLASH@
2.690 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.691 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o timer.obj `if test -f 'sh4/timer.c'; then $(CYGPATH_W) 'sh4/timer.c'; else $(CYGPATH_W) '$(srcdir)/sh4/timer.c'; fi`
2.692 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`
2.693
2.694 -dmac.o: sh4/dmac.c
2.695 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dmac.o -MD -MP -MF "$(DEPDIR)/dmac.Tpo" -c -o dmac.o `test -f 'sh4/dmac.c' || echo '$(srcdir)/'`sh4/dmac.c; \
2.696 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dmac.Tpo" "$(DEPDIR)/dmac.Po"; else rm -f "$(DEPDIR)/dmac.Tpo"; exit 1; fi
2.697 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/dmac.c' object='dmac.o' libtool=no @AMDEPBACKSLASH@
2.698 +liblxdream_core_a-asic.o: asic.c
2.699 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-asic.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-asic.Tpo" -c -o liblxdream_core_a-asic.o `test -f 'asic.c' || echo '$(srcdir)/'`asic.c; \
2.700 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-asic.Tpo" "$(DEPDIR)/liblxdream_core_a-asic.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-asic.Tpo"; exit 1; fi
2.701 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='asic.c' object='liblxdream_core_a-asic.o' libtool=no @AMDEPBACKSLASH@
2.702 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.703 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dmac.o `test -f 'sh4/dmac.c' || echo '$(srcdir)/'`sh4/dmac.c
2.704 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-asic.o `test -f 'asic.c' || echo '$(srcdir)/'`asic.c
2.705
2.706 -dmac.obj: sh4/dmac.c
2.707 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dmac.obj -MD -MP -MF "$(DEPDIR)/dmac.Tpo" -c -o dmac.obj `if test -f 'sh4/dmac.c'; then $(CYGPATH_W) 'sh4/dmac.c'; else $(CYGPATH_W) '$(srcdir)/sh4/dmac.c'; fi`; \
2.708 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dmac.Tpo" "$(DEPDIR)/dmac.Po"; else rm -f "$(DEPDIR)/dmac.Tpo"; exit 1; fi
2.709 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/dmac.c' object='dmac.obj' libtool=no @AMDEPBACKSLASH@
2.710 +liblxdream_core_a-asic.obj: asic.c
2.711 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-asic.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-asic.Tpo" -c -o liblxdream_core_a-asic.obj `if test -f 'asic.c'; then $(CYGPATH_W) 'asic.c'; else $(CYGPATH_W) '$(srcdir)/asic.c'; fi`; \
2.712 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-asic.Tpo" "$(DEPDIR)/liblxdream_core_a-asic.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-asic.Tpo"; exit 1; fi
2.713 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='asic.c' object='liblxdream_core_a-asic.obj' libtool=no @AMDEPBACKSLASH@
2.714 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.715 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dmac.obj `if test -f 'sh4/dmac.c'; then $(CYGPATH_W) 'sh4/dmac.c'; else $(CYGPATH_W) '$(srcdir)/sh4/dmac.c'; fi`
2.716 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-asic.obj `if test -f 'asic.c'; then $(CYGPATH_W) 'asic.c'; else $(CYGPATH_W) '$(srcdir)/asic.c'; fi`
2.717
2.718 -mmu.o: sh4/mmu.c
2.719 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mmu.o -MD -MP -MF "$(DEPDIR)/mmu.Tpo" -c -o mmu.o `test -f 'sh4/mmu.c' || echo '$(srcdir)/'`sh4/mmu.c; \
2.720 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mmu.Tpo" "$(DEPDIR)/mmu.Po"; else rm -f "$(DEPDIR)/mmu.Tpo"; exit 1; fi
2.721 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmu.c' object='mmu.o' libtool=no @AMDEPBACKSLASH@
2.722 +liblxdream_core_a-syscall.o: syscall.c
2.723 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-syscall.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-syscall.Tpo" -c -o liblxdream_core_a-syscall.o `test -f 'syscall.c' || echo '$(srcdir)/'`syscall.c; \
2.724 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-syscall.Tpo" "$(DEPDIR)/liblxdream_core_a-syscall.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-syscall.Tpo"; exit 1; fi
2.725 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='syscall.c' object='liblxdream_core_a-syscall.o' libtool=no @AMDEPBACKSLASH@
2.726 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.727 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mmu.o `test -f 'sh4/mmu.c' || echo '$(srcdir)/'`sh4/mmu.c
2.728 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-syscall.o `test -f 'syscall.c' || echo '$(srcdir)/'`syscall.c
2.729
2.730 -mmu.obj: sh4/mmu.c
2.731 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mmu.obj -MD -MP -MF "$(DEPDIR)/mmu.Tpo" -c -o mmu.obj `if test -f 'sh4/mmu.c'; then $(CYGPATH_W) 'sh4/mmu.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmu.c'; fi`; \
2.732 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mmu.Tpo" "$(DEPDIR)/mmu.Po"; else rm -f "$(DEPDIR)/mmu.Tpo"; exit 1; fi
2.733 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmu.c' object='mmu.obj' libtool=no @AMDEPBACKSLASH@
2.734 +liblxdream_core_a-syscall.obj: syscall.c
2.735 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-syscall.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-syscall.Tpo" -c -o liblxdream_core_a-syscall.obj `if test -f 'syscall.c'; then $(CYGPATH_W) 'syscall.c'; else $(CYGPATH_W) '$(srcdir)/syscall.c'; fi`; \
2.736 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-syscall.Tpo" "$(DEPDIR)/liblxdream_core_a-syscall.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-syscall.Tpo"; exit 1; fi
2.737 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='syscall.c' object='liblxdream_core_a-syscall.obj' libtool=no @AMDEPBACKSLASH@
2.738 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.739 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mmu.obj `if test -f 'sh4/mmu.c'; then $(CYGPATH_W) 'sh4/mmu.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmu.c'; fi`
2.740 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-syscall.obj `if test -f 'syscall.c'; then $(CYGPATH_W) 'syscall.c'; else $(CYGPATH_W) '$(srcdir)/syscall.c'; fi`
2.741
2.742 -sh4core.o: sh4/sh4core.c
2.743 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4core.o -MD -MP -MF "$(DEPDIR)/sh4core.Tpo" -c -o sh4core.o `test -f 'sh4/sh4core.c' || echo '$(srcdir)/'`sh4/sh4core.c; \
2.744 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4core.Tpo" "$(DEPDIR)/sh4core.Po"; else rm -f "$(DEPDIR)/sh4core.Tpo"; exit 1; fi
2.745 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4core.c' object='sh4core.o' libtool=no @AMDEPBACKSLASH@
2.746 +liblxdream_core_a-bios.o: bios.c
2.747 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-bios.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-bios.Tpo" -c -o liblxdream_core_a-bios.o `test -f 'bios.c' || echo '$(srcdir)/'`bios.c; \
2.748 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-bios.Tpo" "$(DEPDIR)/liblxdream_core_a-bios.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-bios.Tpo"; exit 1; fi
2.749 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bios.c' object='liblxdream_core_a-bios.o' libtool=no @AMDEPBACKSLASH@
2.750 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.751 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4core.o `test -f 'sh4/sh4core.c' || echo '$(srcdir)/'`sh4/sh4core.c
2.752 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-bios.o `test -f 'bios.c' || echo '$(srcdir)/'`bios.c
2.753
2.754 -sh4core.obj: sh4/sh4core.c
2.755 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4core.obj -MD -MP -MF "$(DEPDIR)/sh4core.Tpo" -c -o sh4core.obj `if test -f 'sh4/sh4core.c'; then $(CYGPATH_W) 'sh4/sh4core.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4core.c'; fi`; \
2.756 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4core.Tpo" "$(DEPDIR)/sh4core.Po"; else rm -f "$(DEPDIR)/sh4core.Tpo"; exit 1; fi
2.757 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4core.c' object='sh4core.obj' libtool=no @AMDEPBACKSLASH@
2.758 +liblxdream_core_a-bios.obj: bios.c
2.759 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-bios.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-bios.Tpo" -c -o liblxdream_core_a-bios.obj `if test -f 'bios.c'; then $(CYGPATH_W) 'bios.c'; else $(CYGPATH_W) '$(srcdir)/bios.c'; fi`; \
2.760 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-bios.Tpo" "$(DEPDIR)/liblxdream_core_a-bios.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-bios.Tpo"; exit 1; fi
2.761 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bios.c' object='liblxdream_core_a-bios.obj' libtool=no @AMDEPBACKSLASH@
2.762 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.763 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4core.obj `if test -f 'sh4/sh4core.c'; then $(CYGPATH_W) 'sh4/sh4core.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4core.c'; fi`
2.764 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-bios.obj `if test -f 'bios.c'; then $(CYGPATH_W) 'bios.c'; else $(CYGPATH_W) '$(srcdir)/bios.c'; fi`
2.765
2.766 -sh4dasm.o: sh4/sh4dasm.c
2.767 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4dasm.o -MD -MP -MF "$(DEPDIR)/sh4dasm.Tpo" -c -o sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c; \
2.768 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4dasm.Tpo" "$(DEPDIR)/sh4dasm.Po"; else rm -f "$(DEPDIR)/sh4dasm.Tpo"; exit 1; fi
2.769 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='sh4dasm.o' libtool=no @AMDEPBACKSLASH@
2.770 +liblxdream_core_a-dcload.o: dcload.c
2.771 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dcload.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dcload.Tpo" -c -o liblxdream_core_a-dcload.o `test -f 'dcload.c' || echo '$(srcdir)/'`dcload.c; \
2.772 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dcload.Tpo" "$(DEPDIR)/liblxdream_core_a-dcload.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dcload.Tpo"; exit 1; fi
2.773 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dcload.c' object='liblxdream_core_a-dcload.o' libtool=no @AMDEPBACKSLASH@
2.774 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.775 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c
2.776 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dcload.o `test -f 'dcload.c' || echo '$(srcdir)/'`dcload.c
2.777
2.778 -sh4dasm.obj: sh4/sh4dasm.c
2.779 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4dasm.obj -MD -MP -MF "$(DEPDIR)/sh4dasm.Tpo" -c -o sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`; \
2.780 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4dasm.Tpo" "$(DEPDIR)/sh4dasm.Po"; else rm -f "$(DEPDIR)/sh4dasm.Tpo"; exit 1; fi
2.781 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='sh4dasm.obj' libtool=no @AMDEPBACKSLASH@
2.782 +liblxdream_core_a-dcload.obj: dcload.c
2.783 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dcload.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dcload.Tpo" -c -o liblxdream_core_a-dcload.obj `if test -f 'dcload.c'; then $(CYGPATH_W) 'dcload.c'; else $(CYGPATH_W) '$(srcdir)/dcload.c'; fi`; \
2.784 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dcload.Tpo" "$(DEPDIR)/liblxdream_core_a-dcload.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dcload.Tpo"; exit 1; fi
2.785 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dcload.c' object='liblxdream_core_a-dcload.obj' libtool=no @AMDEPBACKSLASH@
2.786 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.787 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`
2.788 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dcload.obj `if test -f 'dcload.c'; then $(CYGPATH_W) 'dcload.c'; else $(CYGPATH_W) '$(srcdir)/dcload.c'; fi`
2.789
2.790 -sh4mmio.o: sh4/sh4mmio.c
2.791 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4mmio.o -MD -MP -MF "$(DEPDIR)/sh4mmio.Tpo" -c -o sh4mmio.o `test -f 'sh4/sh4mmio.c' || echo '$(srcdir)/'`sh4/sh4mmio.c; \
2.792 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4mmio.Tpo" "$(DEPDIR)/sh4mmio.Po"; else rm -f "$(DEPDIR)/sh4mmio.Tpo"; exit 1; fi
2.793 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mmio.c' object='sh4mmio.o' libtool=no @AMDEPBACKSLASH@
2.794 +liblxdream_core_a-gdbserver.o: gdbserver.c
2.795 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdbserver.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo" -c -o liblxdream_core_a-gdbserver.o `test -f 'gdbserver.c' || echo '$(srcdir)/'`gdbserver.c; \
2.796 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo" "$(DEPDIR)/liblxdream_core_a-gdbserver.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo"; exit 1; fi
2.797 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdbserver.c' object='liblxdream_core_a-gdbserver.o' libtool=no @AMDEPBACKSLASH@
2.798 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.799 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4mmio.o `test -f 'sh4/sh4mmio.c' || echo '$(srcdir)/'`sh4/sh4mmio.c
2.800 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdbserver.o `test -f 'gdbserver.c' || echo '$(srcdir)/'`gdbserver.c
2.801
2.802 -sh4mmio.obj: sh4/sh4mmio.c
2.803 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4mmio.obj -MD -MP -MF "$(DEPDIR)/sh4mmio.Tpo" -c -o sh4mmio.obj `if test -f 'sh4/sh4mmio.c'; then $(CYGPATH_W) 'sh4/sh4mmio.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mmio.c'; fi`; \
2.804 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4mmio.Tpo" "$(DEPDIR)/sh4mmio.Po"; else rm -f "$(DEPDIR)/sh4mmio.Tpo"; exit 1; fi
2.805 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mmio.c' object='sh4mmio.obj' libtool=no @AMDEPBACKSLASH@
2.806 +liblxdream_core_a-gdbserver.obj: gdbserver.c
2.807 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdbserver.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo" -c -o liblxdream_core_a-gdbserver.obj `if test -f 'gdbserver.c'; then $(CYGPATH_W) 'gdbserver.c'; else $(CYGPATH_W) '$(srcdir)/gdbserver.c'; fi`; \
2.808 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo" "$(DEPDIR)/liblxdream_core_a-gdbserver.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdbserver.Tpo"; exit 1; fi
2.809 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdbserver.c' object='liblxdream_core_a-gdbserver.obj' libtool=no @AMDEPBACKSLASH@
2.810 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.811 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4mmio.obj `if test -f 'sh4/sh4mmio.c'; then $(CYGPATH_W) 'sh4/sh4mmio.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mmio.c'; fi`
2.812 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdbserver.obj `if test -f 'gdbserver.c'; then $(CYGPATH_W) 'gdbserver.c'; else $(CYGPATH_W) '$(srcdir)/gdbserver.c'; fi`
2.813
2.814 -scif.o: sh4/scif.c
2.815 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scif.o -MD -MP -MF "$(DEPDIR)/scif.Tpo" -c -o scif.o `test -f 'sh4/scif.c' || echo '$(srcdir)/'`sh4/scif.c; \
2.816 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scif.Tpo" "$(DEPDIR)/scif.Po"; else rm -f "$(DEPDIR)/scif.Tpo"; exit 1; fi
2.817 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/scif.c' object='scif.o' libtool=no @AMDEPBACKSLASH@
2.818 +liblxdream_core_a-ioutil.o: ioutil.c
2.819 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-ioutil.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo" -c -o liblxdream_core_a-ioutil.o `test -f 'ioutil.c' || echo '$(srcdir)/'`ioutil.c; \
2.820 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo" "$(DEPDIR)/liblxdream_core_a-ioutil.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo"; exit 1; fi
2.821 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioutil.c' object='liblxdream_core_a-ioutil.o' libtool=no @AMDEPBACKSLASH@
2.822 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.823 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scif.o `test -f 'sh4/scif.c' || echo '$(srcdir)/'`sh4/scif.c
2.824 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-ioutil.o `test -f 'ioutil.c' || echo '$(srcdir)/'`ioutil.c
2.825
2.826 -scif.obj: sh4/scif.c
2.827 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scif.obj -MD -MP -MF "$(DEPDIR)/scif.Tpo" -c -o scif.obj `if test -f 'sh4/scif.c'; then $(CYGPATH_W) 'sh4/scif.c'; else $(CYGPATH_W) '$(srcdir)/sh4/scif.c'; fi`; \
2.828 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scif.Tpo" "$(DEPDIR)/scif.Po"; else rm -f "$(DEPDIR)/scif.Tpo"; exit 1; fi
2.829 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/scif.c' object='scif.obj' libtool=no @AMDEPBACKSLASH@
2.830 +liblxdream_core_a-ioutil.obj: ioutil.c
2.831 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-ioutil.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo" -c -o liblxdream_core_a-ioutil.obj `if test -f 'ioutil.c'; then $(CYGPATH_W) 'ioutil.c'; else $(CYGPATH_W) '$(srcdir)/ioutil.c'; fi`; \
2.832 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo" "$(DEPDIR)/liblxdream_core_a-ioutil.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-ioutil.Tpo"; exit 1; fi
2.833 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioutil.c' object='liblxdream_core_a-ioutil.obj' libtool=no @AMDEPBACKSLASH@
2.834 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.835 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scif.obj `if test -f 'sh4/scif.c'; then $(CYGPATH_W) 'sh4/scif.c'; else $(CYGPATH_W) '$(srcdir)/sh4/scif.c'; fi`
2.836 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-ioutil.obj `if test -f 'ioutil.c'; then $(CYGPATH_W) 'ioutil.c'; else $(CYGPATH_W) '$(srcdir)/ioutil.c'; fi`
2.837
2.838 -sh4stat.o: sh4/sh4stat.c
2.839 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4stat.o -MD -MP -MF "$(DEPDIR)/sh4stat.Tpo" -c -o sh4stat.o `test -f 'sh4/sh4stat.c' || echo '$(srcdir)/'`sh4/sh4stat.c; \
2.840 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4stat.Tpo" "$(DEPDIR)/sh4stat.Po"; else rm -f "$(DEPDIR)/sh4stat.Tpo"; exit 1; fi
2.841 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4stat.c' object='sh4stat.o' libtool=no @AMDEPBACKSLASH@
2.842 +liblxdream_core_a-lxpaths.o: lxpaths.c
2.843 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-lxpaths.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo" -c -o liblxdream_core_a-lxpaths.o `test -f 'lxpaths.c' || echo '$(srcdir)/'`lxpaths.c; \
2.844 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo" "$(DEPDIR)/liblxdream_core_a-lxpaths.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo"; exit 1; fi
2.845 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lxpaths.c' object='liblxdream_core_a-lxpaths.o' libtool=no @AMDEPBACKSLASH@
2.846 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.847 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4stat.o `test -f 'sh4/sh4stat.c' || echo '$(srcdir)/'`sh4/sh4stat.c
2.848 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-lxpaths.o `test -f 'lxpaths.c' || echo '$(srcdir)/'`lxpaths.c
2.849
2.850 -sh4stat.obj: sh4/sh4stat.c
2.851 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4stat.obj -MD -MP -MF "$(DEPDIR)/sh4stat.Tpo" -c -o sh4stat.obj `if test -f 'sh4/sh4stat.c'; then $(CYGPATH_W) 'sh4/sh4stat.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4stat.c'; fi`; \
2.852 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4stat.Tpo" "$(DEPDIR)/sh4stat.Po"; else rm -f "$(DEPDIR)/sh4stat.Tpo"; exit 1; fi
2.853 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4stat.c' object='sh4stat.obj' libtool=no @AMDEPBACKSLASH@
2.854 +liblxdream_core_a-lxpaths.obj: lxpaths.c
2.855 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-lxpaths.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo" -c -o liblxdream_core_a-lxpaths.obj `if test -f 'lxpaths.c'; then $(CYGPATH_W) 'lxpaths.c'; else $(CYGPATH_W) '$(srcdir)/lxpaths.c'; fi`; \
2.856 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo" "$(DEPDIR)/liblxdream_core_a-lxpaths.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-lxpaths.Tpo"; exit 1; fi
2.857 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lxpaths.c' object='liblxdream_core_a-lxpaths.obj' libtool=no @AMDEPBACKSLASH@
2.858 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.859 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4stat.obj `if test -f 'sh4/sh4stat.c'; then $(CYGPATH_W) 'sh4/sh4stat.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4stat.c'; fi`
2.860 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-lxpaths.obj `if test -f 'lxpaths.c'; then $(CYGPATH_W) 'lxpaths.c'; else $(CYGPATH_W) '$(srcdir)/lxpaths.c'; fi`
2.861
2.862 -xltcache.o: xlat/xltcache.c
2.863 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xltcache.o -MD -MP -MF "$(DEPDIR)/xltcache.Tpo" -c -o xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c; \
2.864 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/xltcache.Tpo" "$(DEPDIR)/xltcache.Po"; else rm -f "$(DEPDIR)/xltcache.Tpo"; exit 1; fi
2.865 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='xltcache.o' libtool=no @AMDEPBACKSLASH@
2.866 +liblxdream_core_a-ide.o: gdrom/ide.c
2.867 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-ide.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-ide.Tpo" -c -o liblxdream_core_a-ide.o `test -f 'gdrom/ide.c' || echo '$(srcdir)/'`gdrom/ide.c; \
2.868 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-ide.Tpo" "$(DEPDIR)/liblxdream_core_a-ide.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-ide.Tpo"; exit 1; fi
2.869 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/ide.c' object='liblxdream_core_a-ide.o' libtool=no @AMDEPBACKSLASH@
2.870 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.871 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c
2.872 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-ide.o `test -f 'gdrom/ide.c' || echo '$(srcdir)/'`gdrom/ide.c
2.873
2.874 -xltcache.obj: xlat/xltcache.c
2.875 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xltcache.obj -MD -MP -MF "$(DEPDIR)/xltcache.Tpo" -c -o xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`; \
2.876 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/xltcache.Tpo" "$(DEPDIR)/xltcache.Po"; else rm -f "$(DEPDIR)/xltcache.Tpo"; exit 1; fi
2.877 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='xltcache.obj' libtool=no @AMDEPBACKSLASH@
2.878 +liblxdream_core_a-ide.obj: gdrom/ide.c
2.879 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-ide.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-ide.Tpo" -c -o liblxdream_core_a-ide.obj `if test -f 'gdrom/ide.c'; then $(CYGPATH_W) 'gdrom/ide.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/ide.c'; fi`; \
2.880 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-ide.Tpo" "$(DEPDIR)/liblxdream_core_a-ide.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-ide.Tpo"; exit 1; fi
2.881 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/ide.c' object='liblxdream_core_a-ide.obj' libtool=no @AMDEPBACKSLASH@
2.882 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.883 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`
2.884 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-ide.obj `if test -f 'gdrom/ide.c'; then $(CYGPATH_W) 'gdrom/ide.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/ide.c'; fi`
2.885
2.886 -pmm.o: sh4/pmm.c
2.887 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmm.o -MD -MP -MF "$(DEPDIR)/pmm.Tpo" -c -o pmm.o `test -f 'sh4/pmm.c' || echo '$(srcdir)/'`sh4/pmm.c; \
2.888 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pmm.Tpo" "$(DEPDIR)/pmm.Po"; else rm -f "$(DEPDIR)/pmm.Tpo"; exit 1; fi
2.889 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/pmm.c' object='pmm.o' libtool=no @AMDEPBACKSLASH@
2.890 +liblxdream_core_a-gdrom.o: gdrom/gdrom.c
2.891 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdrom.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo" -c -o liblxdream_core_a-gdrom.o `test -f 'gdrom/gdrom.c' || echo '$(srcdir)/'`gdrom/gdrom.c; \
2.892 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo" "$(DEPDIR)/liblxdream_core_a-gdrom.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo"; exit 1; fi
2.893 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/gdrom.c' object='liblxdream_core_a-gdrom.o' libtool=no @AMDEPBACKSLASH@
2.894 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.895 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmm.o `test -f 'sh4/pmm.c' || echo '$(srcdir)/'`sh4/pmm.c
2.896 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdrom.o `test -f 'gdrom/gdrom.c' || echo '$(srcdir)/'`gdrom/gdrom.c
2.897
2.898 -pmm.obj: sh4/pmm.c
2.899 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmm.obj -MD -MP -MF "$(DEPDIR)/pmm.Tpo" -c -o pmm.obj `if test -f 'sh4/pmm.c'; then $(CYGPATH_W) 'sh4/pmm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/pmm.c'; fi`; \
2.900 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pmm.Tpo" "$(DEPDIR)/pmm.Po"; else rm -f "$(DEPDIR)/pmm.Tpo"; exit 1; fi
2.901 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/pmm.c' object='pmm.obj' libtool=no @AMDEPBACKSLASH@
2.902 +liblxdream_core_a-gdrom.obj: gdrom/gdrom.c
2.903 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdrom.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo" -c -o liblxdream_core_a-gdrom.obj `if test -f 'gdrom/gdrom.c'; then $(CYGPATH_W) 'gdrom/gdrom.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/gdrom.c'; fi`; \
2.904 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo" "$(DEPDIR)/liblxdream_core_a-gdrom.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdrom.Tpo"; exit 1; fi
2.905 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdrom/gdrom.c' object='liblxdream_core_a-gdrom.obj' libtool=no @AMDEPBACKSLASH@
2.906 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.907 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmm.obj `if test -f 'sh4/pmm.c'; then $(CYGPATH_W) 'sh4/pmm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/pmm.c'; fi`
2.908 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdrom.obj `if test -f 'gdrom/gdrom.c'; then $(CYGPATH_W) 'gdrom/gdrom.c'; else $(CYGPATH_W) '$(srcdir)/gdrom/gdrom.c'; fi`
2.909
2.910 -cache.o: sh4/cache.c
2.911 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cache.o -MD -MP -MF "$(DEPDIR)/cache.Tpo" -c -o cache.o `test -f 'sh4/cache.c' || echo '$(srcdir)/'`sh4/cache.c; \
2.912 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cache.Tpo" "$(DEPDIR)/cache.Po"; else rm -f "$(DEPDIR)/cache.Tpo"; exit 1; fi
2.913 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/cache.c' object='cache.o' libtool=no @AMDEPBACKSLASH@
2.914 +liblxdream_core_a-dreamcast.o: dreamcast.c
2.915 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dreamcast.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo" -c -o liblxdream_core_a-dreamcast.o `test -f 'dreamcast.c' || echo '$(srcdir)/'`dreamcast.c; \
2.916 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo" "$(DEPDIR)/liblxdream_core_a-dreamcast.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo"; exit 1; fi
2.917 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dreamcast.c' object='liblxdream_core_a-dreamcast.o' libtool=no @AMDEPBACKSLASH@
2.918 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.919 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cache.o `test -f 'sh4/cache.c' || echo '$(srcdir)/'`sh4/cache.c
2.920 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dreamcast.o `test -f 'dreamcast.c' || echo '$(srcdir)/'`dreamcast.c
2.921
2.922 -cache.obj: sh4/cache.c
2.923 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cache.obj -MD -MP -MF "$(DEPDIR)/cache.Tpo" -c -o cache.obj `if test -f 'sh4/cache.c'; then $(CYGPATH_W) 'sh4/cache.c'; else $(CYGPATH_W) '$(srcdir)/sh4/cache.c'; fi`; \
2.924 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cache.Tpo" "$(DEPDIR)/cache.Po"; else rm -f "$(DEPDIR)/cache.Tpo"; exit 1; fi
2.925 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/cache.c' object='cache.obj' libtool=no @AMDEPBACKSLASH@
2.926 +liblxdream_core_a-dreamcast.obj: dreamcast.c
2.927 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dreamcast.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo" -c -o liblxdream_core_a-dreamcast.obj `if test -f 'dreamcast.c'; then $(CYGPATH_W) 'dreamcast.c'; else $(CYGPATH_W) '$(srcdir)/dreamcast.c'; fi`; \
2.928 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo" "$(DEPDIR)/liblxdream_core_a-dreamcast.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dreamcast.Tpo"; exit 1; fi
2.929 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dreamcast.c' object='liblxdream_core_a-dreamcast.obj' libtool=no @AMDEPBACKSLASH@
2.930 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.931 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cache.obj `if test -f 'sh4/cache.c'; then $(CYGPATH_W) 'sh4/cache.c'; else $(CYGPATH_W) '$(srcdir)/sh4/cache.c'; fi`
2.932 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dreamcast.obj `if test -f 'dreamcast.c'; then $(CYGPATH_W) 'dreamcast.c'; else $(CYGPATH_W) '$(srcdir)/dreamcast.c'; fi`
2.933
2.934 -armcore.o: aica/armcore.c
2.935 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armcore.o -MD -MP -MF "$(DEPDIR)/armcore.Tpo" -c -o armcore.o `test -f 'aica/armcore.c' || echo '$(srcdir)/'`aica/armcore.c; \
2.936 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armcore.Tpo" "$(DEPDIR)/armcore.Po"; else rm -f "$(DEPDIR)/armcore.Tpo"; exit 1; fi
2.937 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armcore.c' object='armcore.o' libtool=no @AMDEPBACKSLASH@
2.938 +liblxdream_core_a-eventq.o: eventq.c
2.939 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-eventq.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-eventq.Tpo" -c -o liblxdream_core_a-eventq.o `test -f 'eventq.c' || echo '$(srcdir)/'`eventq.c; \
2.940 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-eventq.Tpo" "$(DEPDIR)/liblxdream_core_a-eventq.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-eventq.Tpo"; exit 1; fi
2.941 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eventq.c' object='liblxdream_core_a-eventq.o' libtool=no @AMDEPBACKSLASH@
2.942 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.943 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armcore.o `test -f 'aica/armcore.c' || echo '$(srcdir)/'`aica/armcore.c
2.944 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-eventq.o `test -f 'eventq.c' || echo '$(srcdir)/'`eventq.c
2.945
2.946 -armcore.obj: aica/armcore.c
2.947 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armcore.obj -MD -MP -MF "$(DEPDIR)/armcore.Tpo" -c -o armcore.obj `if test -f 'aica/armcore.c'; then $(CYGPATH_W) 'aica/armcore.c'; else $(CYGPATH_W) '$(srcdir)/aica/armcore.c'; fi`; \
2.948 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armcore.Tpo" "$(DEPDIR)/armcore.Po"; else rm -f "$(DEPDIR)/armcore.Tpo"; exit 1; fi
2.949 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armcore.c' object='armcore.obj' libtool=no @AMDEPBACKSLASH@
2.950 +liblxdream_core_a-eventq.obj: eventq.c
2.951 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-eventq.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-eventq.Tpo" -c -o liblxdream_core_a-eventq.obj `if test -f 'eventq.c'; then $(CYGPATH_W) 'eventq.c'; else $(CYGPATH_W) '$(srcdir)/eventq.c'; fi`; \
2.952 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-eventq.Tpo" "$(DEPDIR)/liblxdream_core_a-eventq.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-eventq.Tpo"; exit 1; fi
2.953 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eventq.c' object='liblxdream_core_a-eventq.obj' libtool=no @AMDEPBACKSLASH@
2.954 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.955 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armcore.obj `if test -f 'aica/armcore.c'; then $(CYGPATH_W) 'aica/armcore.c'; else $(CYGPATH_W) '$(srcdir)/aica/armcore.c'; fi`
2.956 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-eventq.obj `if test -f 'eventq.c'; then $(CYGPATH_W) 'eventq.c'; else $(CYGPATH_W) '$(srcdir)/eventq.c'; fi`
2.957
2.958 -armdasm.o: aica/armdasm.c
2.959 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armdasm.o -MD -MP -MF "$(DEPDIR)/armdasm.Tpo" -c -o armdasm.o `test -f 'aica/armdasm.c' || echo '$(srcdir)/'`aica/armdasm.c; \
2.960 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armdasm.Tpo" "$(DEPDIR)/armdasm.Po"; else rm -f "$(DEPDIR)/armdasm.Tpo"; exit 1; fi
2.961 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armdasm.c' object='armdasm.o' libtool=no @AMDEPBACKSLASH@
2.962 +liblxdream_core_a-sh4.o: sh4/sh4.c
2.963 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4.Tpo" -c -o liblxdream_core_a-sh4.o `test -f 'sh4/sh4.c' || echo '$(srcdir)/'`sh4/sh4.c; \
2.964 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4.Tpo"; exit 1; fi
2.965 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4.c' object='liblxdream_core_a-sh4.o' libtool=no @AMDEPBACKSLASH@
2.966 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.967 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armdasm.o `test -f 'aica/armdasm.c' || echo '$(srcdir)/'`aica/armdasm.c
2.968 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4.o `test -f 'sh4/sh4.c' || echo '$(srcdir)/'`sh4/sh4.c
2.969
2.970 -armdasm.obj: aica/armdasm.c
2.971 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armdasm.obj -MD -MP -MF "$(DEPDIR)/armdasm.Tpo" -c -o armdasm.obj `if test -f 'aica/armdasm.c'; then $(CYGPATH_W) 'aica/armdasm.c'; else $(CYGPATH_W) '$(srcdir)/aica/armdasm.c'; fi`; \
2.972 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armdasm.Tpo" "$(DEPDIR)/armdasm.Po"; else rm -f "$(DEPDIR)/armdasm.Tpo"; exit 1; fi
2.973 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armdasm.c' object='armdasm.obj' libtool=no @AMDEPBACKSLASH@
2.974 +liblxdream_core_a-sh4.obj: sh4/sh4.c
2.975 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4.Tpo" -c -o liblxdream_core_a-sh4.obj `if test -f 'sh4/sh4.c'; then $(CYGPATH_W) 'sh4/sh4.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4.c'; fi`; \
2.976 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4.Tpo"; exit 1; fi
2.977 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4.c' object='liblxdream_core_a-sh4.obj' libtool=no @AMDEPBACKSLASH@
2.978 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.979 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armdasm.obj `if test -f 'aica/armdasm.c'; then $(CYGPATH_W) 'aica/armdasm.c'; else $(CYGPATH_W) '$(srcdir)/aica/armdasm.c'; fi`
2.980 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4.obj `if test -f 'sh4/sh4.c'; then $(CYGPATH_W) 'sh4/sh4.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4.c'; fi`
2.981
2.982 -armmem.o: aica/armmem.c
2.983 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armmem.o -MD -MP -MF "$(DEPDIR)/armmem.Tpo" -c -o armmem.o `test -f 'aica/armmem.c' || echo '$(srcdir)/'`aica/armmem.c; \
2.984 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armmem.Tpo" "$(DEPDIR)/armmem.Po"; else rm -f "$(DEPDIR)/armmem.Tpo"; exit 1; fi
2.985 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armmem.c' object='armmem.o' libtool=no @AMDEPBACKSLASH@
2.986 +liblxdream_core_a-intc.o: sh4/intc.c
2.987 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-intc.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-intc.Tpo" -c -o liblxdream_core_a-intc.o `test -f 'sh4/intc.c' || echo '$(srcdir)/'`sh4/intc.c; \
2.988 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-intc.Tpo" "$(DEPDIR)/liblxdream_core_a-intc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-intc.Tpo"; exit 1; fi
2.989 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/intc.c' object='liblxdream_core_a-intc.o' libtool=no @AMDEPBACKSLASH@
2.990 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.991 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armmem.o `test -f 'aica/armmem.c' || echo '$(srcdir)/'`aica/armmem.c
2.992 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-intc.o `test -f 'sh4/intc.c' || echo '$(srcdir)/'`sh4/intc.c
2.993
2.994 -armmem.obj: aica/armmem.c
2.995 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT armmem.obj -MD -MP -MF "$(DEPDIR)/armmem.Tpo" -c -o armmem.obj `if test -f 'aica/armmem.c'; then $(CYGPATH_W) 'aica/armmem.c'; else $(CYGPATH_W) '$(srcdir)/aica/armmem.c'; fi`; \
2.996 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/armmem.Tpo" "$(DEPDIR)/armmem.Po"; else rm -f "$(DEPDIR)/armmem.Tpo"; exit 1; fi
2.997 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armmem.c' object='armmem.obj' libtool=no @AMDEPBACKSLASH@
2.998 +liblxdream_core_a-intc.obj: sh4/intc.c
2.999 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-intc.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-intc.Tpo" -c -o liblxdream_core_a-intc.obj `if test -f 'sh4/intc.c'; then $(CYGPATH_W) 'sh4/intc.c'; else $(CYGPATH_W) '$(srcdir)/sh4/intc.c'; fi`; \
2.1000 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-intc.Tpo" "$(DEPDIR)/liblxdream_core_a-intc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-intc.Tpo"; exit 1; fi
2.1001 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/intc.c' object='liblxdream_core_a-intc.obj' libtool=no @AMDEPBACKSLASH@
2.1002 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1003 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o armmem.obj `if test -f 'aica/armmem.c'; then $(CYGPATH_W) 'aica/armmem.c'; else $(CYGPATH_W) '$(srcdir)/aica/armmem.c'; fi`
2.1004 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-intc.obj `if test -f 'sh4/intc.c'; then $(CYGPATH_W) 'sh4/intc.c'; else $(CYGPATH_W) '$(srcdir)/sh4/intc.c'; fi`
2.1005
2.1006 -aica.o: aica/aica.c
2.1007 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aica.o -MD -MP -MF "$(DEPDIR)/aica.Tpo" -c -o aica.o `test -f 'aica/aica.c' || echo '$(srcdir)/'`aica/aica.c; \
2.1008 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/aica.Tpo" "$(DEPDIR)/aica.Po"; else rm -f "$(DEPDIR)/aica.Tpo"; exit 1; fi
2.1009 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/aica.c' object='aica.o' libtool=no @AMDEPBACKSLASH@
2.1010 +liblxdream_core_a-sh4mem.o: sh4/sh4mem.c
2.1011 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4mem.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo" -c -o liblxdream_core_a-sh4mem.o `test -f 'sh4/sh4mem.c' || echo '$(srcdir)/'`sh4/sh4mem.c; \
2.1012 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo"; exit 1; fi
2.1013 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mem.c' object='liblxdream_core_a-sh4mem.o' libtool=no @AMDEPBACKSLASH@
2.1014 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1015 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aica.o `test -f 'aica/aica.c' || echo '$(srcdir)/'`aica/aica.c
2.1016 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4mem.o `test -f 'sh4/sh4mem.c' || echo '$(srcdir)/'`sh4/sh4mem.c
2.1017
2.1018 -aica.obj: aica/aica.c
2.1019 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT aica.obj -MD -MP -MF "$(DEPDIR)/aica.Tpo" -c -o aica.obj `if test -f 'aica/aica.c'; then $(CYGPATH_W) 'aica/aica.c'; else $(CYGPATH_W) '$(srcdir)/aica/aica.c'; fi`; \
2.1020 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/aica.Tpo" "$(DEPDIR)/aica.Po"; else rm -f "$(DEPDIR)/aica.Tpo"; exit 1; fi
2.1021 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/aica.c' object='aica.obj' libtool=no @AMDEPBACKSLASH@
2.1022 +liblxdream_core_a-sh4mem.obj: sh4/sh4mem.c
2.1023 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4mem.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo" -c -o liblxdream_core_a-sh4mem.obj `if test -f 'sh4/sh4mem.c'; then $(CYGPATH_W) 'sh4/sh4mem.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mem.c'; fi`; \
2.1024 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4mem.Tpo"; exit 1; fi
2.1025 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mem.c' object='liblxdream_core_a-sh4mem.obj' libtool=no @AMDEPBACKSLASH@
2.1026 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1027 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o aica.obj `if test -f 'aica/aica.c'; then $(CYGPATH_W) 'aica/aica.c'; else $(CYGPATH_W) '$(srcdir)/aica/aica.c'; fi`
2.1028 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4mem.obj `if test -f 'sh4/sh4mem.c'; then $(CYGPATH_W) 'sh4/sh4mem.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mem.c'; fi`
2.1029
2.1030 -audio.o: aica/audio.c
2.1031 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio.o -MD -MP -MF "$(DEPDIR)/audio.Tpo" -c -o audio.o `test -f 'aica/audio.c' || echo '$(srcdir)/'`aica/audio.c; \
2.1032 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio.Tpo" "$(DEPDIR)/audio.Po"; else rm -f "$(DEPDIR)/audio.Tpo"; exit 1; fi
2.1033 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/audio.c' object='audio.o' libtool=no @AMDEPBACKSLASH@
2.1034 +liblxdream_core_a-timer.o: sh4/timer.c
2.1035 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-timer.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-timer.Tpo" -c -o liblxdream_core_a-timer.o `test -f 'sh4/timer.c' || echo '$(srcdir)/'`sh4/timer.c; \
2.1036 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-timer.Tpo" "$(DEPDIR)/liblxdream_core_a-timer.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-timer.Tpo"; exit 1; fi
2.1037 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/timer.c' object='liblxdream_core_a-timer.o' libtool=no @AMDEPBACKSLASH@
2.1038 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1039 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio.o `test -f 'aica/audio.c' || echo '$(srcdir)/'`aica/audio.c
2.1040 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-timer.o `test -f 'sh4/timer.c' || echo '$(srcdir)/'`sh4/timer.c
2.1041
2.1042 -audio.obj: aica/audio.c
2.1043 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio.obj -MD -MP -MF "$(DEPDIR)/audio.Tpo" -c -o audio.obj `if test -f 'aica/audio.c'; then $(CYGPATH_W) 'aica/audio.c'; else $(CYGPATH_W) '$(srcdir)/aica/audio.c'; fi`; \
2.1044 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio.Tpo" "$(DEPDIR)/audio.Po"; else rm -f "$(DEPDIR)/audio.Tpo"; exit 1; fi
2.1045 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/audio.c' object='audio.obj' libtool=no @AMDEPBACKSLASH@
2.1046 +liblxdream_core_a-timer.obj: sh4/timer.c
2.1047 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-timer.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-timer.Tpo" -c -o liblxdream_core_a-timer.obj `if test -f 'sh4/timer.c'; then $(CYGPATH_W) 'sh4/timer.c'; else $(CYGPATH_W) '$(srcdir)/sh4/timer.c'; fi`; \
2.1048 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-timer.Tpo" "$(DEPDIR)/liblxdream_core_a-timer.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-timer.Tpo"; exit 1; fi
2.1049 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/timer.c' object='liblxdream_core_a-timer.obj' libtool=no @AMDEPBACKSLASH@
2.1050 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1051 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio.obj `if test -f 'aica/audio.c'; then $(CYGPATH_W) 'aica/audio.c'; else $(CYGPATH_W) '$(srcdir)/aica/audio.c'; fi`
2.1052 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-timer.obj `if test -f 'sh4/timer.c'; then $(CYGPATH_W) 'sh4/timer.c'; else $(CYGPATH_W) '$(srcdir)/sh4/timer.c'; fi`
2.1053
2.1054 -pvr2.o: pvr2/pvr2.c
2.1055 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pvr2.o -MD -MP -MF "$(DEPDIR)/pvr2.Tpo" -c -o pvr2.o `test -f 'pvr2/pvr2.c' || echo '$(srcdir)/'`pvr2/pvr2.c; \
2.1056 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pvr2.Tpo" "$(DEPDIR)/pvr2.Po"; else rm -f "$(DEPDIR)/pvr2.Tpo"; exit 1; fi
2.1057 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2.c' object='pvr2.o' libtool=no @AMDEPBACKSLASH@
2.1058 +liblxdream_core_a-dmac.o: sh4/dmac.c
2.1059 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dmac.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dmac.Tpo" -c -o liblxdream_core_a-dmac.o `test -f 'sh4/dmac.c' || echo '$(srcdir)/'`sh4/dmac.c; \
2.1060 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dmac.Tpo" "$(DEPDIR)/liblxdream_core_a-dmac.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dmac.Tpo"; exit 1; fi
2.1061 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/dmac.c' object='liblxdream_core_a-dmac.o' libtool=no @AMDEPBACKSLASH@
2.1062 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1063 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pvr2.o `test -f 'pvr2/pvr2.c' || echo '$(srcdir)/'`pvr2/pvr2.c
2.1064 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dmac.o `test -f 'sh4/dmac.c' || echo '$(srcdir)/'`sh4/dmac.c
2.1065
2.1066 -pvr2.obj: pvr2/pvr2.c
2.1067 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pvr2.obj -MD -MP -MF "$(DEPDIR)/pvr2.Tpo" -c -o pvr2.obj `if test -f 'pvr2/pvr2.c'; then $(CYGPATH_W) 'pvr2/pvr2.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2.c'; fi`; \
2.1068 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pvr2.Tpo" "$(DEPDIR)/pvr2.Po"; else rm -f "$(DEPDIR)/pvr2.Tpo"; exit 1; fi
2.1069 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2.c' object='pvr2.obj' libtool=no @AMDEPBACKSLASH@
2.1070 +liblxdream_core_a-dmac.obj: sh4/dmac.c
2.1071 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dmac.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dmac.Tpo" -c -o liblxdream_core_a-dmac.obj `if test -f 'sh4/dmac.c'; then $(CYGPATH_W) 'sh4/dmac.c'; else $(CYGPATH_W) '$(srcdir)/sh4/dmac.c'; fi`; \
2.1072 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dmac.Tpo" "$(DEPDIR)/liblxdream_core_a-dmac.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dmac.Tpo"; exit 1; fi
2.1073 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/dmac.c' object='liblxdream_core_a-dmac.obj' libtool=no @AMDEPBACKSLASH@
2.1074 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1075 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pvr2.obj `if test -f 'pvr2/pvr2.c'; then $(CYGPATH_W) 'pvr2/pvr2.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2.c'; fi`
2.1076 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dmac.obj `if test -f 'sh4/dmac.c'; then $(CYGPATH_W) 'sh4/dmac.c'; else $(CYGPATH_W) '$(srcdir)/sh4/dmac.c'; fi`
2.1077
2.1078 -pvr2mem.o: pvr2/pvr2mem.c
2.1079 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pvr2mem.o -MD -MP -MF "$(DEPDIR)/pvr2mem.Tpo" -c -o pvr2mem.o `test -f 'pvr2/pvr2mem.c' || echo '$(srcdir)/'`pvr2/pvr2mem.c; \
2.1080 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pvr2mem.Tpo" "$(DEPDIR)/pvr2mem.Po"; else rm -f "$(DEPDIR)/pvr2mem.Tpo"; exit 1; fi
2.1081 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2mem.c' object='pvr2mem.o' libtool=no @AMDEPBACKSLASH@
2.1082 +liblxdream_core_a-mmu.o: sh4/mmu.c
2.1083 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mmu.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mmu.Tpo" -c -o liblxdream_core_a-mmu.o `test -f 'sh4/mmu.c' || echo '$(srcdir)/'`sh4/mmu.c; \
2.1084 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mmu.Tpo" "$(DEPDIR)/liblxdream_core_a-mmu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mmu.Tpo"; exit 1; fi
2.1085 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmu.c' object='liblxdream_core_a-mmu.o' libtool=no @AMDEPBACKSLASH@
2.1086 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1087 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pvr2mem.o `test -f 'pvr2/pvr2mem.c' || echo '$(srcdir)/'`pvr2/pvr2mem.c
2.1088 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mmu.o `test -f 'sh4/mmu.c' || echo '$(srcdir)/'`sh4/mmu.c
2.1089
2.1090 -pvr2mem.obj: pvr2/pvr2mem.c
2.1091 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pvr2mem.obj -MD -MP -MF "$(DEPDIR)/pvr2mem.Tpo" -c -o pvr2mem.obj `if test -f 'pvr2/pvr2mem.c'; then $(CYGPATH_W) 'pvr2/pvr2mem.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2mem.c'; fi`; \
2.1092 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pvr2mem.Tpo" "$(DEPDIR)/pvr2mem.Po"; else rm -f "$(DEPDIR)/pvr2mem.Tpo"; exit 1; fi
2.1093 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2mem.c' object='pvr2mem.obj' libtool=no @AMDEPBACKSLASH@
2.1094 +liblxdream_core_a-mmu.obj: sh4/mmu.c
2.1095 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mmu.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mmu.Tpo" -c -o liblxdream_core_a-mmu.obj `if test -f 'sh4/mmu.c'; then $(CYGPATH_W) 'sh4/mmu.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmu.c'; fi`; \
2.1096 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mmu.Tpo" "$(DEPDIR)/liblxdream_core_a-mmu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mmu.Tpo"; exit 1; fi
2.1097 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmu.c' object='liblxdream_core_a-mmu.obj' libtool=no @AMDEPBACKSLASH@
2.1098 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1099 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pvr2mem.obj `if test -f 'pvr2/pvr2mem.c'; then $(CYGPATH_W) 'pvr2/pvr2mem.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2mem.c'; fi`
2.1100 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mmu.obj `if test -f 'sh4/mmu.c'; then $(CYGPATH_W) 'sh4/mmu.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmu.c'; fi`
2.1101
2.1102 -tacore.o: pvr2/tacore.c
2.1103 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tacore.o -MD -MP -MF "$(DEPDIR)/tacore.Tpo" -c -o tacore.o `test -f 'pvr2/tacore.c' || echo '$(srcdir)/'`pvr2/tacore.c; \
2.1104 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tacore.Tpo" "$(DEPDIR)/tacore.Po"; else rm -f "$(DEPDIR)/tacore.Tpo"; exit 1; fi
2.1105 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/tacore.c' object='tacore.o' libtool=no @AMDEPBACKSLASH@
2.1106 +liblxdream_core_a-sh4core.o: sh4/sh4core.c
2.1107 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4core.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo" -c -o liblxdream_core_a-sh4core.o `test -f 'sh4/sh4core.c' || echo '$(srcdir)/'`sh4/sh4core.c; \
2.1108 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4core.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo"; exit 1; fi
2.1109 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4core.c' object='liblxdream_core_a-sh4core.o' libtool=no @AMDEPBACKSLASH@
2.1110 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1111 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tacore.o `test -f 'pvr2/tacore.c' || echo '$(srcdir)/'`pvr2/tacore.c
2.1112 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4core.o `test -f 'sh4/sh4core.c' || echo '$(srcdir)/'`sh4/sh4core.c
2.1113
2.1114 -tacore.obj: pvr2/tacore.c
2.1115 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tacore.obj -MD -MP -MF "$(DEPDIR)/tacore.Tpo" -c -o tacore.obj `if test -f 'pvr2/tacore.c'; then $(CYGPATH_W) 'pvr2/tacore.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/tacore.c'; fi`; \
2.1116 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tacore.Tpo" "$(DEPDIR)/tacore.Po"; else rm -f "$(DEPDIR)/tacore.Tpo"; exit 1; fi
2.1117 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/tacore.c' object='tacore.obj' libtool=no @AMDEPBACKSLASH@
2.1118 +liblxdream_core_a-sh4core.obj: sh4/sh4core.c
2.1119 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4core.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo" -c -o liblxdream_core_a-sh4core.obj `if test -f 'sh4/sh4core.c'; then $(CYGPATH_W) 'sh4/sh4core.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4core.c'; fi`; \
2.1120 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4core.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4core.Tpo"; exit 1; fi
2.1121 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4core.c' object='liblxdream_core_a-sh4core.obj' libtool=no @AMDEPBACKSLASH@
2.1122 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1123 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tacore.obj `if test -f 'pvr2/tacore.c'; then $(CYGPATH_W) 'pvr2/tacore.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/tacore.c'; fi`
2.1124 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4core.obj `if test -f 'sh4/sh4core.c'; then $(CYGPATH_W) 'sh4/sh4core.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4core.c'; fi`
2.1125
2.1126 -rendsort.o: pvr2/rendsort.c
2.1127 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rendsort.o -MD -MP -MF "$(DEPDIR)/rendsort.Tpo" -c -o rendsort.o `test -f 'pvr2/rendsort.c' || echo '$(srcdir)/'`pvr2/rendsort.c; \
2.1128 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/rendsort.Tpo" "$(DEPDIR)/rendsort.Po"; else rm -f "$(DEPDIR)/rendsort.Tpo"; exit 1; fi
2.1129 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsort.c' object='rendsort.o' libtool=no @AMDEPBACKSLASH@
2.1130 +liblxdream_core_a-sh4dasm.o: sh4/sh4dasm.c
2.1131 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4dasm.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo" -c -o liblxdream_core_a-sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c; \
2.1132 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4dasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo"; exit 1; fi
2.1133 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='liblxdream_core_a-sh4dasm.o' libtool=no @AMDEPBACKSLASH@
2.1134 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1135 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rendsort.o `test -f 'pvr2/rendsort.c' || echo '$(srcdir)/'`pvr2/rendsort.c
2.1136 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c
2.1137
2.1138 -rendsort.obj: pvr2/rendsort.c
2.1139 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rendsort.obj -MD -MP -MF "$(DEPDIR)/rendsort.Tpo" -c -o rendsort.obj `if test -f 'pvr2/rendsort.c'; then $(CYGPATH_W) 'pvr2/rendsort.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsort.c'; fi`; \
2.1140 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/rendsort.Tpo" "$(DEPDIR)/rendsort.Po"; else rm -f "$(DEPDIR)/rendsort.Tpo"; exit 1; fi
2.1141 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsort.c' object='rendsort.obj' libtool=no @AMDEPBACKSLASH@
2.1142 +liblxdream_core_a-sh4dasm.obj: sh4/sh4dasm.c
2.1143 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4dasm.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo" -c -o liblxdream_core_a-sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`; \
2.1144 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4dasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4dasm.Tpo"; exit 1; fi
2.1145 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='liblxdream_core_a-sh4dasm.obj' libtool=no @AMDEPBACKSLASH@
2.1146 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1147 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rendsort.obj `if test -f 'pvr2/rendsort.c'; then $(CYGPATH_W) 'pvr2/rendsort.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsort.c'; fi`
2.1148 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`
2.1149
2.1150 -texcache.o: pvr2/texcache.c
2.1151 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT texcache.o -MD -MP -MF "$(DEPDIR)/texcache.Tpo" -c -o texcache.o `test -f 'pvr2/texcache.c' || echo '$(srcdir)/'`pvr2/texcache.c; \
2.1152 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/texcache.Tpo" "$(DEPDIR)/texcache.Po"; else rm -f "$(DEPDIR)/texcache.Tpo"; exit 1; fi
2.1153 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/texcache.c' object='texcache.o' libtool=no @AMDEPBACKSLASH@
2.1154 +liblxdream_core_a-sh4mmio.o: sh4/sh4mmio.c
2.1155 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4mmio.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo" -c -o liblxdream_core_a-sh4mmio.o `test -f 'sh4/sh4mmio.c' || echo '$(srcdir)/'`sh4/sh4mmio.c; \
2.1156 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4mmio.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo"; exit 1; fi
2.1157 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mmio.c' object='liblxdream_core_a-sh4mmio.o' libtool=no @AMDEPBACKSLASH@
2.1158 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1159 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o texcache.o `test -f 'pvr2/texcache.c' || echo '$(srcdir)/'`pvr2/texcache.c
2.1160 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4mmio.o `test -f 'sh4/sh4mmio.c' || echo '$(srcdir)/'`sh4/sh4mmio.c
2.1161
2.1162 -texcache.obj: pvr2/texcache.c
2.1163 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT texcache.obj -MD -MP -MF "$(DEPDIR)/texcache.Tpo" -c -o texcache.obj `if test -f 'pvr2/texcache.c'; then $(CYGPATH_W) 'pvr2/texcache.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/texcache.c'; fi`; \
2.1164 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/texcache.Tpo" "$(DEPDIR)/texcache.Po"; else rm -f "$(DEPDIR)/texcache.Tpo"; exit 1; fi
2.1165 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/texcache.c' object='texcache.obj' libtool=no @AMDEPBACKSLASH@
2.1166 +liblxdream_core_a-sh4mmio.obj: sh4/sh4mmio.c
2.1167 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4mmio.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo" -c -o liblxdream_core_a-sh4mmio.obj `if test -f 'sh4/sh4mmio.c'; then $(CYGPATH_W) 'sh4/sh4mmio.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mmio.c'; fi`; \
2.1168 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4mmio.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4mmio.Tpo"; exit 1; fi
2.1169 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4mmio.c' object='liblxdream_core_a-sh4mmio.obj' libtool=no @AMDEPBACKSLASH@
2.1170 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1171 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o texcache.obj `if test -f 'pvr2/texcache.c'; then $(CYGPATH_W) 'pvr2/texcache.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/texcache.c'; fi`
2.1172 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4mmio.obj `if test -f 'sh4/sh4mmio.c'; then $(CYGPATH_W) 'sh4/sh4mmio.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4mmio.c'; fi`
2.1173
2.1174 -yuv.o: pvr2/yuv.c
2.1175 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yuv.o -MD -MP -MF "$(DEPDIR)/yuv.Tpo" -c -o yuv.o `test -f 'pvr2/yuv.c' || echo '$(srcdir)/'`pvr2/yuv.c; \
2.1176 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/yuv.Tpo" "$(DEPDIR)/yuv.Po"; else rm -f "$(DEPDIR)/yuv.Tpo"; exit 1; fi
2.1177 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/yuv.c' object='yuv.o' libtool=no @AMDEPBACKSLASH@
2.1178 +liblxdream_core_a-scif.o: sh4/scif.c
2.1179 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-scif.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-scif.Tpo" -c -o liblxdream_core_a-scif.o `test -f 'sh4/scif.c' || echo '$(srcdir)/'`sh4/scif.c; \
2.1180 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-scif.Tpo" "$(DEPDIR)/liblxdream_core_a-scif.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-scif.Tpo"; exit 1; fi
2.1181 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/scif.c' object='liblxdream_core_a-scif.o' libtool=no @AMDEPBACKSLASH@
2.1182 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1183 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yuv.o `test -f 'pvr2/yuv.c' || echo '$(srcdir)/'`pvr2/yuv.c
2.1184 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-scif.o `test -f 'sh4/scif.c' || echo '$(srcdir)/'`sh4/scif.c
2.1185
2.1186 -yuv.obj: pvr2/yuv.c
2.1187 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yuv.obj -MD -MP -MF "$(DEPDIR)/yuv.Tpo" -c -o yuv.obj `if test -f 'pvr2/yuv.c'; then $(CYGPATH_W) 'pvr2/yuv.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/yuv.c'; fi`; \
2.1188 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/yuv.Tpo" "$(DEPDIR)/yuv.Po"; else rm -f "$(DEPDIR)/yuv.Tpo"; exit 1; fi
2.1189 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/yuv.c' object='yuv.obj' libtool=no @AMDEPBACKSLASH@
2.1190 +liblxdream_core_a-scif.obj: sh4/scif.c
2.1191 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-scif.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-scif.Tpo" -c -o liblxdream_core_a-scif.obj `if test -f 'sh4/scif.c'; then $(CYGPATH_W) 'sh4/scif.c'; else $(CYGPATH_W) '$(srcdir)/sh4/scif.c'; fi`; \
2.1192 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-scif.Tpo" "$(DEPDIR)/liblxdream_core_a-scif.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-scif.Tpo"; exit 1; fi
2.1193 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/scif.c' object='liblxdream_core_a-scif.obj' libtool=no @AMDEPBACKSLASH@
2.1194 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1195 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yuv.obj `if test -f 'pvr2/yuv.c'; then $(CYGPATH_W) 'pvr2/yuv.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/yuv.c'; fi`
2.1196 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-scif.obj `if test -f 'sh4/scif.c'; then $(CYGPATH_W) 'sh4/scif.c'; else $(CYGPATH_W) '$(srcdir)/sh4/scif.c'; fi`
2.1197
2.1198 -rendsave.o: pvr2/rendsave.c
2.1199 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rendsave.o -MD -MP -MF "$(DEPDIR)/rendsave.Tpo" -c -o rendsave.o `test -f 'pvr2/rendsave.c' || echo '$(srcdir)/'`pvr2/rendsave.c; \
2.1200 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/rendsave.Tpo" "$(DEPDIR)/rendsave.Po"; else rm -f "$(DEPDIR)/rendsave.Tpo"; exit 1; fi
2.1201 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsave.c' object='rendsave.o' libtool=no @AMDEPBACKSLASH@
2.1202 +liblxdream_core_a-sh4stat.o: sh4/sh4stat.c
2.1203 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4stat.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo" -c -o liblxdream_core_a-sh4stat.o `test -f 'sh4/sh4stat.c' || echo '$(srcdir)/'`sh4/sh4stat.c; \
2.1204 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4stat.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo"; exit 1; fi
2.1205 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4stat.c' object='liblxdream_core_a-sh4stat.o' libtool=no @AMDEPBACKSLASH@
2.1206 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1207 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rendsave.o `test -f 'pvr2/rendsave.c' || echo '$(srcdir)/'`pvr2/rendsave.c
2.1208 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4stat.o `test -f 'sh4/sh4stat.c' || echo '$(srcdir)/'`sh4/sh4stat.c
2.1209
2.1210 -rendsave.obj: pvr2/rendsave.c
2.1211 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rendsave.obj -MD -MP -MF "$(DEPDIR)/rendsave.Tpo" -c -o rendsave.obj `if test -f 'pvr2/rendsave.c'; then $(CYGPATH_W) 'pvr2/rendsave.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsave.c'; fi`; \
2.1212 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/rendsave.Tpo" "$(DEPDIR)/rendsave.Po"; else rm -f "$(DEPDIR)/rendsave.Tpo"; exit 1; fi
2.1213 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsave.c' object='rendsave.obj' libtool=no @AMDEPBACKSLASH@
2.1214 +liblxdream_core_a-sh4stat.obj: sh4/sh4stat.c
2.1215 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4stat.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo" -c -o liblxdream_core_a-sh4stat.obj `if test -f 'sh4/sh4stat.c'; then $(CYGPATH_W) 'sh4/sh4stat.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4stat.c'; fi`; \
2.1216 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4stat.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4stat.Tpo"; exit 1; fi
2.1217 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4stat.c' object='liblxdream_core_a-sh4stat.obj' libtool=no @AMDEPBACKSLASH@
2.1218 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1219 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rendsave.obj `if test -f 'pvr2/rendsave.c'; then $(CYGPATH_W) 'pvr2/rendsave.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsave.c'; fi`
2.1220 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4stat.obj `if test -f 'sh4/sh4stat.c'; then $(CYGPATH_W) 'sh4/sh4stat.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4stat.c'; fi`
2.1221
2.1222 -scene.o: pvr2/scene.c
2.1223 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scene.o -MD -MP -MF "$(DEPDIR)/scene.Tpo" -c -o scene.o `test -f 'pvr2/scene.c' || echo '$(srcdir)/'`pvr2/scene.c; \
2.1224 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scene.Tpo" "$(DEPDIR)/scene.Po"; else rm -f "$(DEPDIR)/scene.Tpo"; exit 1; fi
2.1225 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/scene.c' object='scene.o' libtool=no @AMDEPBACKSLASH@
2.1226 +liblxdream_core_a-xltcache.o: xlat/xltcache.c
2.1227 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-xltcache.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo" -c -o liblxdream_core_a-xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c; \
2.1228 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo" "$(DEPDIR)/liblxdream_core_a-xltcache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo"; exit 1; fi
2.1229 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='liblxdream_core_a-xltcache.o' libtool=no @AMDEPBACKSLASH@
2.1230 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1231 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scene.o `test -f 'pvr2/scene.c' || echo '$(srcdir)/'`pvr2/scene.c
2.1232 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c
2.1233
2.1234 -scene.obj: pvr2/scene.c
2.1235 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scene.obj -MD -MP -MF "$(DEPDIR)/scene.Tpo" -c -o scene.obj `if test -f 'pvr2/scene.c'; then $(CYGPATH_W) 'pvr2/scene.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/scene.c'; fi`; \
2.1236 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scene.Tpo" "$(DEPDIR)/scene.Po"; else rm -f "$(DEPDIR)/scene.Tpo"; exit 1; fi
2.1237 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/scene.c' object='scene.obj' libtool=no @AMDEPBACKSLASH@
2.1238 +liblxdream_core_a-xltcache.obj: xlat/xltcache.c
2.1239 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-xltcache.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo" -c -o liblxdream_core_a-xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`; \
2.1240 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo" "$(DEPDIR)/liblxdream_core_a-xltcache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-xltcache.Tpo"; exit 1; fi
2.1241 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='liblxdream_core_a-xltcache.obj' libtool=no @AMDEPBACKSLASH@
2.1242 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1243 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scene.obj `if test -f 'pvr2/scene.c'; then $(CYGPATH_W) 'pvr2/scene.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/scene.c'; fi`
2.1244 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`
2.1245
2.1246 -gl_sl.o: pvr2/gl_sl.c
2.1247 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_sl.o -MD -MP -MF "$(DEPDIR)/gl_sl.Tpo" -c -o gl_sl.o `test -f 'pvr2/gl_sl.c' || echo '$(srcdir)/'`pvr2/gl_sl.c; \
2.1248 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_sl.Tpo" "$(DEPDIR)/gl_sl.Po"; else rm -f "$(DEPDIR)/gl_sl.Tpo"; exit 1; fi
2.1249 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/gl_sl.c' object='gl_sl.o' libtool=no @AMDEPBACKSLASH@
2.1250 +liblxdream_core_a-pmm.o: sh4/pmm.c
2.1251 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pmm.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pmm.Tpo" -c -o liblxdream_core_a-pmm.o `test -f 'sh4/pmm.c' || echo '$(srcdir)/'`sh4/pmm.c; \
2.1252 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pmm.Tpo" "$(DEPDIR)/liblxdream_core_a-pmm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pmm.Tpo"; exit 1; fi
2.1253 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/pmm.c' object='liblxdream_core_a-pmm.o' libtool=no @AMDEPBACKSLASH@
2.1254 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1255 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_sl.o `test -f 'pvr2/gl_sl.c' || echo '$(srcdir)/'`pvr2/gl_sl.c
2.1256 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pmm.o `test -f 'sh4/pmm.c' || echo '$(srcdir)/'`sh4/pmm.c
2.1257
2.1258 -gl_sl.obj: pvr2/gl_sl.c
2.1259 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_sl.obj -MD -MP -MF "$(DEPDIR)/gl_sl.Tpo" -c -o gl_sl.obj `if test -f 'pvr2/gl_sl.c'; then $(CYGPATH_W) 'pvr2/gl_sl.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/gl_sl.c'; fi`; \
2.1260 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_sl.Tpo" "$(DEPDIR)/gl_sl.Po"; else rm -f "$(DEPDIR)/gl_sl.Tpo"; exit 1; fi
2.1261 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/gl_sl.c' object='gl_sl.obj' libtool=no @AMDEPBACKSLASH@
2.1262 +liblxdream_core_a-pmm.obj: sh4/pmm.c
2.1263 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pmm.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pmm.Tpo" -c -o liblxdream_core_a-pmm.obj `if test -f 'sh4/pmm.c'; then $(CYGPATH_W) 'sh4/pmm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/pmm.c'; fi`; \
2.1264 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pmm.Tpo" "$(DEPDIR)/liblxdream_core_a-pmm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pmm.Tpo"; exit 1; fi
2.1265 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/pmm.c' object='liblxdream_core_a-pmm.obj' libtool=no @AMDEPBACKSLASH@
2.1266 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1267 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_sl.obj `if test -f 'pvr2/gl_sl.c'; then $(CYGPATH_W) 'pvr2/gl_sl.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/gl_sl.c'; fi`
2.1268 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pmm.obj `if test -f 'sh4/pmm.c'; then $(CYGPATH_W) 'sh4/pmm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/pmm.c'; fi`
2.1269
2.1270 -glutil.o: pvr2/glutil.c
2.1271 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT glutil.o -MD -MP -MF "$(DEPDIR)/glutil.Tpo" -c -o glutil.o `test -f 'pvr2/glutil.c' || echo '$(srcdir)/'`pvr2/glutil.c; \
2.1272 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/glutil.Tpo" "$(DEPDIR)/glutil.Po"; else rm -f "$(DEPDIR)/glutil.Tpo"; exit 1; fi
2.1273 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glutil.c' object='glutil.o' libtool=no @AMDEPBACKSLASH@
2.1274 +liblxdream_core_a-cache.o: sh4/cache.c
2.1275 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cache.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cache.Tpo" -c -o liblxdream_core_a-cache.o `test -f 'sh4/cache.c' || echo '$(srcdir)/'`sh4/cache.c; \
2.1276 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cache.Tpo" "$(DEPDIR)/liblxdream_core_a-cache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cache.Tpo"; exit 1; fi
2.1277 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/cache.c' object='liblxdream_core_a-cache.o' libtool=no @AMDEPBACKSLASH@
2.1278 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1279 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o glutil.o `test -f 'pvr2/glutil.c' || echo '$(srcdir)/'`pvr2/glutil.c
2.1280 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cache.o `test -f 'sh4/cache.c' || echo '$(srcdir)/'`sh4/cache.c
2.1281
2.1282 -glutil.obj: pvr2/glutil.c
2.1283 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT glutil.obj -MD -MP -MF "$(DEPDIR)/glutil.Tpo" -c -o glutil.obj `if test -f 'pvr2/glutil.c'; then $(CYGPATH_W) 'pvr2/glutil.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glutil.c'; fi`; \
2.1284 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/glutil.Tpo" "$(DEPDIR)/glutil.Po"; else rm -f "$(DEPDIR)/glutil.Tpo"; exit 1; fi
2.1285 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glutil.c' object='glutil.obj' libtool=no @AMDEPBACKSLASH@
2.1286 +liblxdream_core_a-cache.obj: sh4/cache.c
2.1287 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cache.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cache.Tpo" -c -o liblxdream_core_a-cache.obj `if test -f 'sh4/cache.c'; then $(CYGPATH_W) 'sh4/cache.c'; else $(CYGPATH_W) '$(srcdir)/sh4/cache.c'; fi`; \
2.1288 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cache.Tpo" "$(DEPDIR)/liblxdream_core_a-cache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cache.Tpo"; exit 1; fi
2.1289 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/cache.c' object='liblxdream_core_a-cache.obj' libtool=no @AMDEPBACKSLASH@
2.1290 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1291 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o glutil.obj `if test -f 'pvr2/glutil.c'; then $(CYGPATH_W) 'pvr2/glutil.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glutil.c'; fi`
2.1292 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cache.obj `if test -f 'sh4/cache.c'; then $(CYGPATH_W) 'sh4/cache.c'; else $(CYGPATH_W) '$(srcdir)/sh4/cache.c'; fi`
2.1293
2.1294 -glrender.o: pvr2/glrender.c
2.1295 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT glrender.o -MD -MP -MF "$(DEPDIR)/glrender.Tpo" -c -o glrender.o `test -f 'pvr2/glrender.c' || echo '$(srcdir)/'`pvr2/glrender.c; \
2.1296 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/glrender.Tpo" "$(DEPDIR)/glrender.Po"; else rm -f "$(DEPDIR)/glrender.Tpo"; exit 1; fi
2.1297 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glrender.c' object='glrender.o' libtool=no @AMDEPBACKSLASH@
2.1298 +liblxdream_core_a-armcore.o: aica/armcore.c
2.1299 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armcore.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armcore.Tpo" -c -o liblxdream_core_a-armcore.o `test -f 'aica/armcore.c' || echo '$(srcdir)/'`aica/armcore.c; \
2.1300 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armcore.Tpo" "$(DEPDIR)/liblxdream_core_a-armcore.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armcore.Tpo"; exit 1; fi
2.1301 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armcore.c' object='liblxdream_core_a-armcore.o' libtool=no @AMDEPBACKSLASH@
2.1302 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1303 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o glrender.o `test -f 'pvr2/glrender.c' || echo '$(srcdir)/'`pvr2/glrender.c
2.1304 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armcore.o `test -f 'aica/armcore.c' || echo '$(srcdir)/'`aica/armcore.c
2.1305
2.1306 -glrender.obj: pvr2/glrender.c
2.1307 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT glrender.obj -MD -MP -MF "$(DEPDIR)/glrender.Tpo" -c -o glrender.obj `if test -f 'pvr2/glrender.c'; then $(CYGPATH_W) 'pvr2/glrender.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glrender.c'; fi`; \
2.1308 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/glrender.Tpo" "$(DEPDIR)/glrender.Po"; else rm -f "$(DEPDIR)/glrender.Tpo"; exit 1; fi
2.1309 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glrender.c' object='glrender.obj' libtool=no @AMDEPBACKSLASH@
2.1310 +liblxdream_core_a-armcore.obj: aica/armcore.c
2.1311 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armcore.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armcore.Tpo" -c -o liblxdream_core_a-armcore.obj `if test -f 'aica/armcore.c'; then $(CYGPATH_W) 'aica/armcore.c'; else $(CYGPATH_W) '$(srcdir)/aica/armcore.c'; fi`; \
2.1312 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armcore.Tpo" "$(DEPDIR)/liblxdream_core_a-armcore.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armcore.Tpo"; exit 1; fi
2.1313 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armcore.c' object='liblxdream_core_a-armcore.obj' libtool=no @AMDEPBACKSLASH@
2.1314 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1315 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o glrender.obj `if test -f 'pvr2/glrender.c'; then $(CYGPATH_W) 'pvr2/glrender.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glrender.c'; fi`
2.1316 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armcore.obj `if test -f 'aica/armcore.c'; then $(CYGPATH_W) 'aica/armcore.c'; else $(CYGPATH_W) '$(srcdir)/aica/armcore.c'; fi`
2.1317
2.1318 -maple.o: maple/maple.c
2.1319 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT maple.o -MD -MP -MF "$(DEPDIR)/maple.Tpo" -c -o maple.o `test -f 'maple/maple.c' || echo '$(srcdir)/'`maple/maple.c; \
2.1320 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/maple.Tpo" "$(DEPDIR)/maple.Po"; else rm -f "$(DEPDIR)/maple.Tpo"; exit 1; fi
2.1321 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/maple.c' object='maple.o' libtool=no @AMDEPBACKSLASH@
2.1322 +liblxdream_core_a-armdasm.o: aica/armdasm.c
2.1323 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armdasm.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo" -c -o liblxdream_core_a-armdasm.o `test -f 'aica/armdasm.c' || echo '$(srcdir)/'`aica/armdasm.c; \
2.1324 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo" "$(DEPDIR)/liblxdream_core_a-armdasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo"; exit 1; fi
2.1325 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armdasm.c' object='liblxdream_core_a-armdasm.o' libtool=no @AMDEPBACKSLASH@
2.1326 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1327 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o maple.o `test -f 'maple/maple.c' || echo '$(srcdir)/'`maple/maple.c
2.1328 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armdasm.o `test -f 'aica/armdasm.c' || echo '$(srcdir)/'`aica/armdasm.c
2.1329
2.1330 -maple.obj: maple/maple.c
2.1331 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT maple.obj -MD -MP -MF "$(DEPDIR)/maple.Tpo" -c -o maple.obj `if test -f 'maple/maple.c'; then $(CYGPATH_W) 'maple/maple.c'; else $(CYGPATH_W) '$(srcdir)/maple/maple.c'; fi`; \
2.1332 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/maple.Tpo" "$(DEPDIR)/maple.Po"; else rm -f "$(DEPDIR)/maple.Tpo"; exit 1; fi
2.1333 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/maple.c' object='maple.obj' libtool=no @AMDEPBACKSLASH@
2.1334 +liblxdream_core_a-armdasm.obj: aica/armdasm.c
2.1335 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armdasm.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo" -c -o liblxdream_core_a-armdasm.obj `if test -f 'aica/armdasm.c'; then $(CYGPATH_W) 'aica/armdasm.c'; else $(CYGPATH_W) '$(srcdir)/aica/armdasm.c'; fi`; \
2.1336 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo" "$(DEPDIR)/liblxdream_core_a-armdasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armdasm.Tpo"; exit 1; fi
2.1337 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armdasm.c' object='liblxdream_core_a-armdasm.obj' libtool=no @AMDEPBACKSLASH@
2.1338 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1339 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o maple.obj `if test -f 'maple/maple.c'; then $(CYGPATH_W) 'maple/maple.c'; else $(CYGPATH_W) '$(srcdir)/maple/maple.c'; fi`
2.1340 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armdasm.obj `if test -f 'aica/armdasm.c'; then $(CYGPATH_W) 'aica/armdasm.c'; else $(CYGPATH_W) '$(srcdir)/aica/armdasm.c'; fi`
2.1341
2.1342 -controller.o: maple/controller.c
2.1343 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT controller.o -MD -MP -MF "$(DEPDIR)/controller.Tpo" -c -o controller.o `test -f 'maple/controller.c' || echo '$(srcdir)/'`maple/controller.c; \
2.1344 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/controller.Tpo" "$(DEPDIR)/controller.Po"; else rm -f "$(DEPDIR)/controller.Tpo"; exit 1; fi
2.1345 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/controller.c' object='controller.o' libtool=no @AMDEPBACKSLASH@
2.1346 +liblxdream_core_a-armmem.o: aica/armmem.c
2.1347 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armmem.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armmem.Tpo" -c -o liblxdream_core_a-armmem.o `test -f 'aica/armmem.c' || echo '$(srcdir)/'`aica/armmem.c; \
2.1348 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armmem.Tpo" "$(DEPDIR)/liblxdream_core_a-armmem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armmem.Tpo"; exit 1; fi
2.1349 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armmem.c' object='liblxdream_core_a-armmem.o' libtool=no @AMDEPBACKSLASH@
2.1350 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1351 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o controller.o `test -f 'maple/controller.c' || echo '$(srcdir)/'`maple/controller.c
2.1352 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armmem.o `test -f 'aica/armmem.c' || echo '$(srcdir)/'`aica/armmem.c
2.1353
2.1354 -controller.obj: maple/controller.c
2.1355 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT controller.obj -MD -MP -MF "$(DEPDIR)/controller.Tpo" -c -o controller.obj `if test -f 'maple/controller.c'; then $(CYGPATH_W) 'maple/controller.c'; else $(CYGPATH_W) '$(srcdir)/maple/controller.c'; fi`; \
2.1356 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/controller.Tpo" "$(DEPDIR)/controller.Po"; else rm -f "$(DEPDIR)/controller.Tpo"; exit 1; fi
2.1357 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/controller.c' object='controller.obj' libtool=no @AMDEPBACKSLASH@
2.1358 +liblxdream_core_a-armmem.obj: aica/armmem.c
2.1359 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-armmem.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-armmem.Tpo" -c -o liblxdream_core_a-armmem.obj `if test -f 'aica/armmem.c'; then $(CYGPATH_W) 'aica/armmem.c'; else $(CYGPATH_W) '$(srcdir)/aica/armmem.c'; fi`; \
2.1360 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-armmem.Tpo" "$(DEPDIR)/liblxdream_core_a-armmem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-armmem.Tpo"; exit 1; fi
2.1361 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/armmem.c' object='liblxdream_core_a-armmem.obj' libtool=no @AMDEPBACKSLASH@
2.1362 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1363 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o controller.obj `if test -f 'maple/controller.c'; then $(CYGPATH_W) 'maple/controller.c'; else $(CYGPATH_W) '$(srcdir)/maple/controller.c'; fi`
2.1364 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-armmem.obj `if test -f 'aica/armmem.c'; then $(CYGPATH_W) 'aica/armmem.c'; else $(CYGPATH_W) '$(srcdir)/aica/armmem.c'; fi`
2.1365
2.1366 -kbd.o: maple/kbd.c
2.1367 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kbd.o -MD -MP -MF "$(DEPDIR)/kbd.Tpo" -c -o kbd.o `test -f 'maple/kbd.c' || echo '$(srcdir)/'`maple/kbd.c; \
2.1368 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/kbd.Tpo" "$(DEPDIR)/kbd.Po"; else rm -f "$(DEPDIR)/kbd.Tpo"; exit 1; fi
2.1369 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/kbd.c' object='kbd.o' libtool=no @AMDEPBACKSLASH@
2.1370 +liblxdream_core_a-aica.o: aica/aica.c
2.1371 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-aica.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-aica.Tpo" -c -o liblxdream_core_a-aica.o `test -f 'aica/aica.c' || echo '$(srcdir)/'`aica/aica.c; \
2.1372 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-aica.Tpo" "$(DEPDIR)/liblxdream_core_a-aica.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-aica.Tpo"; exit 1; fi
2.1373 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/aica.c' object='liblxdream_core_a-aica.o' libtool=no @AMDEPBACKSLASH@
2.1374 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1375 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o kbd.o `test -f 'maple/kbd.c' || echo '$(srcdir)/'`maple/kbd.c
2.1376 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-aica.o `test -f 'aica/aica.c' || echo '$(srcdir)/'`aica/aica.c
2.1377
2.1378 -kbd.obj: maple/kbd.c
2.1379 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kbd.obj -MD -MP -MF "$(DEPDIR)/kbd.Tpo" -c -o kbd.obj `if test -f 'maple/kbd.c'; then $(CYGPATH_W) 'maple/kbd.c'; else $(CYGPATH_W) '$(srcdir)/maple/kbd.c'; fi`; \
2.1380 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/kbd.Tpo" "$(DEPDIR)/kbd.Po"; else rm -f "$(DEPDIR)/kbd.Tpo"; exit 1; fi
2.1381 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/kbd.c' object='kbd.obj' libtool=no @AMDEPBACKSLASH@
2.1382 +liblxdream_core_a-aica.obj: aica/aica.c
2.1383 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-aica.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-aica.Tpo" -c -o liblxdream_core_a-aica.obj `if test -f 'aica/aica.c'; then $(CYGPATH_W) 'aica/aica.c'; else $(CYGPATH_W) '$(srcdir)/aica/aica.c'; fi`; \
2.1384 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-aica.Tpo" "$(DEPDIR)/liblxdream_core_a-aica.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-aica.Tpo"; exit 1; fi
2.1385 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/aica.c' object='liblxdream_core_a-aica.obj' libtool=no @AMDEPBACKSLASH@
2.1386 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1387 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o kbd.obj `if test -f 'maple/kbd.c'; then $(CYGPATH_W) 'maple/kbd.c'; else $(CYGPATH_W) '$(srcdir)/maple/kbd.c'; fi`
2.1388 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-aica.obj `if test -f 'aica/aica.c'; then $(CYGPATH_W) 'aica/aica.c'; else $(CYGPATH_W) '$(srcdir)/aica/aica.c'; fi`
2.1389
2.1390 -mouse.o: maple/mouse.c
2.1391 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mouse.o -MD -MP -MF "$(DEPDIR)/mouse.Tpo" -c -o mouse.o `test -f 'maple/mouse.c' || echo '$(srcdir)/'`maple/mouse.c; \
2.1392 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mouse.Tpo" "$(DEPDIR)/mouse.Po"; else rm -f "$(DEPDIR)/mouse.Tpo"; exit 1; fi
2.1393 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/mouse.c' object='mouse.o' libtool=no @AMDEPBACKSLASH@
2.1394 +liblxdream_core_a-audio.o: aica/audio.c
2.1395 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-audio.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-audio.Tpo" -c -o liblxdream_core_a-audio.o `test -f 'aica/audio.c' || echo '$(srcdir)/'`aica/audio.c; \
2.1396 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-audio.Tpo" "$(DEPDIR)/liblxdream_core_a-audio.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-audio.Tpo"; exit 1; fi
2.1397 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/audio.c' object='liblxdream_core_a-audio.o' libtool=no @AMDEPBACKSLASH@
2.1398 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1399 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mouse.o `test -f 'maple/mouse.c' || echo '$(srcdir)/'`maple/mouse.c
2.1400 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-audio.o `test -f 'aica/audio.c' || echo '$(srcdir)/'`aica/audio.c
2.1401
2.1402 -mouse.obj: maple/mouse.c
2.1403 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mouse.obj -MD -MP -MF "$(DEPDIR)/mouse.Tpo" -c -o mouse.obj `if test -f 'maple/mouse.c'; then $(CYGPATH_W) 'maple/mouse.c'; else $(CYGPATH_W) '$(srcdir)/maple/mouse.c'; fi`; \
2.1404 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mouse.Tpo" "$(DEPDIR)/mouse.Po"; else rm -f "$(DEPDIR)/mouse.Tpo"; exit 1; fi
2.1405 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/mouse.c' object='mouse.obj' libtool=no @AMDEPBACKSLASH@
2.1406 +liblxdream_core_a-audio.obj: aica/audio.c
2.1407 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-audio.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-audio.Tpo" -c -o liblxdream_core_a-audio.obj `if test -f 'aica/audio.c'; then $(CYGPATH_W) 'aica/audio.c'; else $(CYGPATH_W) '$(srcdir)/aica/audio.c'; fi`; \
2.1408 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-audio.Tpo" "$(DEPDIR)/liblxdream_core_a-audio.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-audio.Tpo"; exit 1; fi
2.1409 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aica/audio.c' object='liblxdream_core_a-audio.obj' libtool=no @AMDEPBACKSLASH@
2.1410 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1411 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mouse.obj `if test -f 'maple/mouse.c'; then $(CYGPATH_W) 'maple/mouse.c'; else $(CYGPATH_W) '$(srcdir)/maple/mouse.c'; fi`
2.1412 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-audio.obj `if test -f 'aica/audio.c'; then $(CYGPATH_W) 'aica/audio.c'; else $(CYGPATH_W) '$(srcdir)/aica/audio.c'; fi`
2.1413
2.1414 -lightgun.o: maple/lightgun.c
2.1415 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lightgun.o -MD -MP -MF "$(DEPDIR)/lightgun.Tpo" -c -o lightgun.o `test -f 'maple/lightgun.c' || echo '$(srcdir)/'`maple/lightgun.c; \
2.1416 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lightgun.Tpo" "$(DEPDIR)/lightgun.Po"; else rm -f "$(DEPDIR)/lightgun.Tpo"; exit 1; fi
2.1417 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/lightgun.c' object='lightgun.o' libtool=no @AMDEPBACKSLASH@
2.1418 +liblxdream_core_a-pvr2.o: pvr2/pvr2.c
2.1419 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pvr2.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo" -c -o liblxdream_core_a-pvr2.o `test -f 'pvr2/pvr2.c' || echo '$(srcdir)/'`pvr2/pvr2.c; \
2.1420 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo" "$(DEPDIR)/liblxdream_core_a-pvr2.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo"; exit 1; fi
2.1421 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2.c' object='liblxdream_core_a-pvr2.o' libtool=no @AMDEPBACKSLASH@
2.1422 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1423 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lightgun.o `test -f 'maple/lightgun.c' || echo '$(srcdir)/'`maple/lightgun.c
2.1424 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pvr2.o `test -f 'pvr2/pvr2.c' || echo '$(srcdir)/'`pvr2/pvr2.c
2.1425
2.1426 -lightgun.obj: maple/lightgun.c
2.1427 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lightgun.obj -MD -MP -MF "$(DEPDIR)/lightgun.Tpo" -c -o lightgun.obj `if test -f 'maple/lightgun.c'; then $(CYGPATH_W) 'maple/lightgun.c'; else $(CYGPATH_W) '$(srcdir)/maple/lightgun.c'; fi`; \
2.1428 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lightgun.Tpo" "$(DEPDIR)/lightgun.Po"; else rm -f "$(DEPDIR)/lightgun.Tpo"; exit 1; fi
2.1429 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/lightgun.c' object='lightgun.obj' libtool=no @AMDEPBACKSLASH@
2.1430 +liblxdream_core_a-pvr2.obj: pvr2/pvr2.c
2.1431 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pvr2.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo" -c -o liblxdream_core_a-pvr2.obj `if test -f 'pvr2/pvr2.c'; then $(CYGPATH_W) 'pvr2/pvr2.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2.c'; fi`; \
2.1432 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo" "$(DEPDIR)/liblxdream_core_a-pvr2.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pvr2.Tpo"; exit 1; fi
2.1433 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2.c' object='liblxdream_core_a-pvr2.obj' libtool=no @AMDEPBACKSLASH@
2.1434 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1435 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lightgun.obj `if test -f 'maple/lightgun.c'; then $(CYGPATH_W) 'maple/lightgun.c'; else $(CYGPATH_W) '$(srcdir)/maple/lightgun.c'; fi`
2.1436 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pvr2.obj `if test -f 'pvr2/pvr2.c'; then $(CYGPATH_W) 'pvr2/pvr2.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2.c'; fi`
2.1437
2.1438 -vmu.o: maple/vmu.c
2.1439 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmu.o -MD -MP -MF "$(DEPDIR)/vmu.Tpo" -c -o vmu.o `test -f 'maple/vmu.c' || echo '$(srcdir)/'`maple/vmu.c; \
2.1440 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmu.Tpo" "$(DEPDIR)/vmu.Po"; else rm -f "$(DEPDIR)/vmu.Tpo"; exit 1; fi
2.1441 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/vmu.c' object='vmu.o' libtool=no @AMDEPBACKSLASH@
2.1442 +liblxdream_core_a-pvr2mem.o: pvr2/pvr2mem.c
2.1443 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pvr2mem.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo" -c -o liblxdream_core_a-pvr2mem.o `test -f 'pvr2/pvr2mem.c' || echo '$(srcdir)/'`pvr2/pvr2mem.c; \
2.1444 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo" "$(DEPDIR)/liblxdream_core_a-pvr2mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo"; exit 1; fi
2.1445 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2mem.c' object='liblxdream_core_a-pvr2mem.o' libtool=no @AMDEPBACKSLASH@
2.1446 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1447 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmu.o `test -f 'maple/vmu.c' || echo '$(srcdir)/'`maple/vmu.c
2.1448 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pvr2mem.o `test -f 'pvr2/pvr2mem.c' || echo '$(srcdir)/'`pvr2/pvr2mem.c
2.1449
2.1450 -vmu.obj: maple/vmu.c
2.1451 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmu.obj -MD -MP -MF "$(DEPDIR)/vmu.Tpo" -c -o vmu.obj `if test -f 'maple/vmu.c'; then $(CYGPATH_W) 'maple/vmu.c'; else $(CYGPATH_W) '$(srcdir)/maple/vmu.c'; fi`; \
2.1452 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmu.Tpo" "$(DEPDIR)/vmu.Po"; else rm -f "$(DEPDIR)/vmu.Tpo"; exit 1; fi
2.1453 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/vmu.c' object='vmu.obj' libtool=no @AMDEPBACKSLASH@
2.1454 +liblxdream_core_a-pvr2mem.obj: pvr2/pvr2mem.c
2.1455 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-pvr2mem.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo" -c -o liblxdream_core_a-pvr2mem.obj `if test -f 'pvr2/pvr2mem.c'; then $(CYGPATH_W) 'pvr2/pvr2mem.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2mem.c'; fi`; \
2.1456 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo" "$(DEPDIR)/liblxdream_core_a-pvr2mem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-pvr2mem.Tpo"; exit 1; fi
2.1457 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/pvr2mem.c' object='liblxdream_core_a-pvr2mem.obj' libtool=no @AMDEPBACKSLASH@
2.1458 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1459 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmu.obj `if test -f 'maple/vmu.c'; then $(CYGPATH_W) 'maple/vmu.c'; else $(CYGPATH_W) '$(srcdir)/maple/vmu.c'; fi`
2.1460 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-pvr2mem.obj `if test -f 'pvr2/pvr2mem.c'; then $(CYGPATH_W) 'pvr2/pvr2mem.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/pvr2mem.c'; fi`
2.1461
2.1462 -vmuvol.o: vmu/vmuvol.c
2.1463 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmuvol.o -MD -MP -MF "$(DEPDIR)/vmuvol.Tpo" -c -o vmuvol.o `test -f 'vmu/vmuvol.c' || echo '$(srcdir)/'`vmu/vmuvol.c; \
2.1464 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmuvol.Tpo" "$(DEPDIR)/vmuvol.Po"; else rm -f "$(DEPDIR)/vmuvol.Tpo"; exit 1; fi
2.1465 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmuvol.c' object='vmuvol.o' libtool=no @AMDEPBACKSLASH@
2.1466 +liblxdream_core_a-tacore.o: pvr2/tacore.c
2.1467 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-tacore.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-tacore.Tpo" -c -o liblxdream_core_a-tacore.o `test -f 'pvr2/tacore.c' || echo '$(srcdir)/'`pvr2/tacore.c; \
2.1468 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-tacore.Tpo" "$(DEPDIR)/liblxdream_core_a-tacore.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-tacore.Tpo"; exit 1; fi
2.1469 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/tacore.c' object='liblxdream_core_a-tacore.o' libtool=no @AMDEPBACKSLASH@
2.1470 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1471 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmuvol.o `test -f 'vmu/vmuvol.c' || echo '$(srcdir)/'`vmu/vmuvol.c
2.1472 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-tacore.o `test -f 'pvr2/tacore.c' || echo '$(srcdir)/'`pvr2/tacore.c
2.1473
2.1474 -vmuvol.obj: vmu/vmuvol.c
2.1475 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmuvol.obj -MD -MP -MF "$(DEPDIR)/vmuvol.Tpo" -c -o vmuvol.obj `if test -f 'vmu/vmuvol.c'; then $(CYGPATH_W) 'vmu/vmuvol.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmuvol.c'; fi`; \
2.1476 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmuvol.Tpo" "$(DEPDIR)/vmuvol.Po"; else rm -f "$(DEPDIR)/vmuvol.Tpo"; exit 1; fi
2.1477 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmuvol.c' object='vmuvol.obj' libtool=no @AMDEPBACKSLASH@
2.1478 +liblxdream_core_a-tacore.obj: pvr2/tacore.c
2.1479 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-tacore.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-tacore.Tpo" -c -o liblxdream_core_a-tacore.obj `if test -f 'pvr2/tacore.c'; then $(CYGPATH_W) 'pvr2/tacore.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/tacore.c'; fi`; \
2.1480 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-tacore.Tpo" "$(DEPDIR)/liblxdream_core_a-tacore.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-tacore.Tpo"; exit 1; fi
2.1481 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/tacore.c' object='liblxdream_core_a-tacore.obj' libtool=no @AMDEPBACKSLASH@
2.1482 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1483 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmuvol.obj `if test -f 'vmu/vmuvol.c'; then $(CYGPATH_W) 'vmu/vmuvol.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmuvol.c'; fi`
2.1484 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-tacore.obj `if test -f 'pvr2/tacore.c'; then $(CYGPATH_W) 'pvr2/tacore.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/tacore.c'; fi`
2.1485
2.1486 -vmulist.o: vmu/vmulist.c
2.1487 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmulist.o -MD -MP -MF "$(DEPDIR)/vmulist.Tpo" -c -o vmulist.o `test -f 'vmu/vmulist.c' || echo '$(srcdir)/'`vmu/vmulist.c; \
2.1488 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmulist.Tpo" "$(DEPDIR)/vmulist.Po"; else rm -f "$(DEPDIR)/vmulist.Tpo"; exit 1; fi
2.1489 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmulist.c' object='vmulist.o' libtool=no @AMDEPBACKSLASH@
2.1490 +liblxdream_core_a-rendsort.o: pvr2/rendsort.c
2.1491 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-rendsort.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo" -c -o liblxdream_core_a-rendsort.o `test -f 'pvr2/rendsort.c' || echo '$(srcdir)/'`pvr2/rendsort.c; \
2.1492 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo" "$(DEPDIR)/liblxdream_core_a-rendsort.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo"; exit 1; fi
2.1493 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsort.c' object='liblxdream_core_a-rendsort.o' libtool=no @AMDEPBACKSLASH@
2.1494 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1495 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmulist.o `test -f 'vmu/vmulist.c' || echo '$(srcdir)/'`vmu/vmulist.c
2.1496 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-rendsort.o `test -f 'pvr2/rendsort.c' || echo '$(srcdir)/'`pvr2/rendsort.c
2.1497
2.1498 -vmulist.obj: vmu/vmulist.c
2.1499 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vmulist.obj -MD -MP -MF "$(DEPDIR)/vmulist.Tpo" -c -o vmulist.obj `if test -f 'vmu/vmulist.c'; then $(CYGPATH_W) 'vmu/vmulist.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmulist.c'; fi`; \
2.1500 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vmulist.Tpo" "$(DEPDIR)/vmulist.Po"; else rm -f "$(DEPDIR)/vmulist.Tpo"; exit 1; fi
2.1501 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmulist.c' object='vmulist.obj' libtool=no @AMDEPBACKSLASH@
2.1502 +liblxdream_core_a-rendsort.obj: pvr2/rendsort.c
2.1503 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-rendsort.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo" -c -o liblxdream_core_a-rendsort.obj `if test -f 'pvr2/rendsort.c'; then $(CYGPATH_W) 'pvr2/rendsort.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsort.c'; fi`; \
2.1504 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo" "$(DEPDIR)/liblxdream_core_a-rendsort.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-rendsort.Tpo"; exit 1; fi
2.1505 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsort.c' object='liblxdream_core_a-rendsort.obj' libtool=no @AMDEPBACKSLASH@
2.1506 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1507 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vmulist.obj `if test -f 'vmu/vmulist.c'; then $(CYGPATH_W) 'vmu/vmulist.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmulist.c'; fi`
2.1508 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-rendsort.obj `if test -f 'pvr2/rendsort.c'; then $(CYGPATH_W) 'pvr2/rendsort.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsort.c'; fi`
2.1509
2.1510 -audio_null.o: drivers/audio_null.c
2.1511 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_null.o -MD -MP -MF "$(DEPDIR)/audio_null.Tpo" -c -o audio_null.o `test -f 'drivers/audio_null.c' || echo '$(srcdir)/'`drivers/audio_null.c; \
2.1512 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_null.Tpo" "$(DEPDIR)/audio_null.Po"; else rm -f "$(DEPDIR)/audio_null.Tpo"; exit 1; fi
2.1513 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_null.c' object='audio_null.o' libtool=no @AMDEPBACKSLASH@
2.1514 +liblxdream_core_a-texcache.o: pvr2/texcache.c
2.1515 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-texcache.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-texcache.Tpo" -c -o liblxdream_core_a-texcache.o `test -f 'pvr2/texcache.c' || echo '$(srcdir)/'`pvr2/texcache.c; \
2.1516 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-texcache.Tpo" "$(DEPDIR)/liblxdream_core_a-texcache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-texcache.Tpo"; exit 1; fi
2.1517 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/texcache.c' object='liblxdream_core_a-texcache.o' libtool=no @AMDEPBACKSLASH@
2.1518 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1519 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_null.o `test -f 'drivers/audio_null.c' || echo '$(srcdir)/'`drivers/audio_null.c
2.1520 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-texcache.o `test -f 'pvr2/texcache.c' || echo '$(srcdir)/'`pvr2/texcache.c
2.1521
2.1522 -audio_null.obj: drivers/audio_null.c
2.1523 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_null.obj -MD -MP -MF "$(DEPDIR)/audio_null.Tpo" -c -o audio_null.obj `if test -f 'drivers/audio_null.c'; then $(CYGPATH_W) 'drivers/audio_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_null.c'; fi`; \
2.1524 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_null.Tpo" "$(DEPDIR)/audio_null.Po"; else rm -f "$(DEPDIR)/audio_null.Tpo"; exit 1; fi
2.1525 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_null.c' object='audio_null.obj' libtool=no @AMDEPBACKSLASH@
2.1526 +liblxdream_core_a-texcache.obj: pvr2/texcache.c
2.1527 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-texcache.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-texcache.Tpo" -c -o liblxdream_core_a-texcache.obj `if test -f 'pvr2/texcache.c'; then $(CYGPATH_W) 'pvr2/texcache.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/texcache.c'; fi`; \
2.1528 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-texcache.Tpo" "$(DEPDIR)/liblxdream_core_a-texcache.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-texcache.Tpo"; exit 1; fi
2.1529 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/texcache.c' object='liblxdream_core_a-texcache.obj' libtool=no @AMDEPBACKSLASH@
2.1530 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1531 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_null.obj `if test -f 'drivers/audio_null.c'; then $(CYGPATH_W) 'drivers/audio_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_null.c'; fi`
2.1532 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-texcache.obj `if test -f 'pvr2/texcache.c'; then $(CYGPATH_W) 'pvr2/texcache.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/texcache.c'; fi`
2.1533
2.1534 -video_null.o: drivers/video_null.c
2.1535 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_null.o -MD -MP -MF "$(DEPDIR)/video_null.Tpo" -c -o video_null.o `test -f 'drivers/video_null.c' || echo '$(srcdir)/'`drivers/video_null.c; \
2.1536 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_null.Tpo" "$(DEPDIR)/video_null.Po"; else rm -f "$(DEPDIR)/video_null.Tpo"; exit 1; fi
2.1537 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_null.c' object='video_null.o' libtool=no @AMDEPBACKSLASH@
2.1538 +liblxdream_core_a-yuv.o: pvr2/yuv.c
2.1539 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-yuv.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-yuv.Tpo" -c -o liblxdream_core_a-yuv.o `test -f 'pvr2/yuv.c' || echo '$(srcdir)/'`pvr2/yuv.c; \
2.1540 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-yuv.Tpo" "$(DEPDIR)/liblxdream_core_a-yuv.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-yuv.Tpo"; exit 1; fi
2.1541 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/yuv.c' object='liblxdream_core_a-yuv.o' libtool=no @AMDEPBACKSLASH@
2.1542 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1543 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_null.o `test -f 'drivers/video_null.c' || echo '$(srcdir)/'`drivers/video_null.c
2.1544 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-yuv.o `test -f 'pvr2/yuv.c' || echo '$(srcdir)/'`pvr2/yuv.c
2.1545
2.1546 -video_null.obj: drivers/video_null.c
2.1547 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_null.obj -MD -MP -MF "$(DEPDIR)/video_null.Tpo" -c -o video_null.obj `if test -f 'drivers/video_null.c'; then $(CYGPATH_W) 'drivers/video_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_null.c'; fi`; \
2.1548 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_null.Tpo" "$(DEPDIR)/video_null.Po"; else rm -f "$(DEPDIR)/video_null.Tpo"; exit 1; fi
2.1549 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_null.c' object='video_null.obj' libtool=no @AMDEPBACKSLASH@
2.1550 +liblxdream_core_a-yuv.obj: pvr2/yuv.c
2.1551 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-yuv.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-yuv.Tpo" -c -o liblxdream_core_a-yuv.obj `if test -f 'pvr2/yuv.c'; then $(CYGPATH_W) 'pvr2/yuv.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/yuv.c'; fi`; \
2.1552 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-yuv.Tpo" "$(DEPDIR)/liblxdream_core_a-yuv.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-yuv.Tpo"; exit 1; fi
2.1553 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/yuv.c' object='liblxdream_core_a-yuv.obj' libtool=no @AMDEPBACKSLASH@
2.1554 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1555 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_null.obj `if test -f 'drivers/video_null.c'; then $(CYGPATH_W) 'drivers/video_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_null.c'; fi`
2.1556 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-yuv.obj `if test -f 'pvr2/yuv.c'; then $(CYGPATH_W) 'pvr2/yuv.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/yuv.c'; fi`
2.1557
2.1558 -video_gl.o: drivers/video_gl.c
2.1559 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gl.o -MD -MP -MF "$(DEPDIR)/video_gl.Tpo" -c -o video_gl.o `test -f 'drivers/video_gl.c' || echo '$(srcdir)/'`drivers/video_gl.c; \
2.1560 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gl.Tpo" "$(DEPDIR)/video_gl.Po"; else rm -f "$(DEPDIR)/video_gl.Tpo"; exit 1; fi
2.1561 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gl.c' object='video_gl.o' libtool=no @AMDEPBACKSLASH@
2.1562 +liblxdream_core_a-rendsave.o: pvr2/rendsave.c
2.1563 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-rendsave.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo" -c -o liblxdream_core_a-rendsave.o `test -f 'pvr2/rendsave.c' || echo '$(srcdir)/'`pvr2/rendsave.c; \
2.1564 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo" "$(DEPDIR)/liblxdream_core_a-rendsave.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo"; exit 1; fi
2.1565 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsave.c' object='liblxdream_core_a-rendsave.o' libtool=no @AMDEPBACKSLASH@
2.1566 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1567 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gl.o `test -f 'drivers/video_gl.c' || echo '$(srcdir)/'`drivers/video_gl.c
2.1568 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-rendsave.o `test -f 'pvr2/rendsave.c' || echo '$(srcdir)/'`pvr2/rendsave.c
2.1569
2.1570 -video_gl.obj: drivers/video_gl.c
2.1571 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gl.obj -MD -MP -MF "$(DEPDIR)/video_gl.Tpo" -c -o video_gl.obj `if test -f 'drivers/video_gl.c'; then $(CYGPATH_W) 'drivers/video_gl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gl.c'; fi`; \
2.1572 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gl.Tpo" "$(DEPDIR)/video_gl.Po"; else rm -f "$(DEPDIR)/video_gl.Tpo"; exit 1; fi
2.1573 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gl.c' object='video_gl.obj' libtool=no @AMDEPBACKSLASH@
2.1574 +liblxdream_core_a-rendsave.obj: pvr2/rendsave.c
2.1575 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-rendsave.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo" -c -o liblxdream_core_a-rendsave.obj `if test -f 'pvr2/rendsave.c'; then $(CYGPATH_W) 'pvr2/rendsave.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsave.c'; fi`; \
2.1576 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo" "$(DEPDIR)/liblxdream_core_a-rendsave.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-rendsave.Tpo"; exit 1; fi
2.1577 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/rendsave.c' object='liblxdream_core_a-rendsave.obj' libtool=no @AMDEPBACKSLASH@
2.1578 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1579 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gl.obj `if test -f 'drivers/video_gl.c'; then $(CYGPATH_W) 'drivers/video_gl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gl.c'; fi`
2.1580 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-rendsave.obj `if test -f 'pvr2/rendsave.c'; then $(CYGPATH_W) 'pvr2/rendsave.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/rendsave.c'; fi`
2.1581
2.1582 -gl_fbo.o: drivers/gl_fbo.c
2.1583 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_fbo.o -MD -MP -MF "$(DEPDIR)/gl_fbo.Tpo" -c -o gl_fbo.o `test -f 'drivers/gl_fbo.c' || echo '$(srcdir)/'`drivers/gl_fbo.c; \
2.1584 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_fbo.Tpo" "$(DEPDIR)/gl_fbo.Po"; else rm -f "$(DEPDIR)/gl_fbo.Tpo"; exit 1; fi
2.1585 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_fbo.c' object='gl_fbo.o' libtool=no @AMDEPBACKSLASH@
2.1586 +liblxdream_core_a-scene.o: pvr2/scene.c
2.1587 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-scene.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-scene.Tpo" -c -o liblxdream_core_a-scene.o `test -f 'pvr2/scene.c' || echo '$(srcdir)/'`pvr2/scene.c; \
2.1588 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-scene.Tpo" "$(DEPDIR)/liblxdream_core_a-scene.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-scene.Tpo"; exit 1; fi
2.1589 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/scene.c' object='liblxdream_core_a-scene.o' libtool=no @AMDEPBACKSLASH@
2.1590 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1591 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_fbo.o `test -f 'drivers/gl_fbo.c' || echo '$(srcdir)/'`drivers/gl_fbo.c
2.1592 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-scene.o `test -f 'pvr2/scene.c' || echo '$(srcdir)/'`pvr2/scene.c
2.1593
2.1594 -gl_fbo.obj: drivers/gl_fbo.c
2.1595 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_fbo.obj -MD -MP -MF "$(DEPDIR)/gl_fbo.Tpo" -c -o gl_fbo.obj `if test -f 'drivers/gl_fbo.c'; then $(CYGPATH_W) 'drivers/gl_fbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_fbo.c'; fi`; \
2.1596 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_fbo.Tpo" "$(DEPDIR)/gl_fbo.Po"; else rm -f "$(DEPDIR)/gl_fbo.Tpo"; exit 1; fi
2.1597 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_fbo.c' object='gl_fbo.obj' libtool=no @AMDEPBACKSLASH@
2.1598 +liblxdream_core_a-scene.obj: pvr2/scene.c
2.1599 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-scene.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-scene.Tpo" -c -o liblxdream_core_a-scene.obj `if test -f 'pvr2/scene.c'; then $(CYGPATH_W) 'pvr2/scene.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/scene.c'; fi`; \
2.1600 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-scene.Tpo" "$(DEPDIR)/liblxdream_core_a-scene.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-scene.Tpo"; exit 1; fi
2.1601 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/scene.c' object='liblxdream_core_a-scene.obj' libtool=no @AMDEPBACKSLASH@
2.1602 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1603 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_fbo.obj `if test -f 'drivers/gl_fbo.c'; then $(CYGPATH_W) 'drivers/gl_fbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_fbo.c'; fi`
2.1604 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-scene.obj `if test -f 'pvr2/scene.c'; then $(CYGPATH_W) 'pvr2/scene.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/scene.c'; fi`
2.1605
2.1606 -gl_vbo.o: drivers/gl_vbo.c
2.1607 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_vbo.o -MD -MP -MF "$(DEPDIR)/gl_vbo.Tpo" -c -o gl_vbo.o `test -f 'drivers/gl_vbo.c' || echo '$(srcdir)/'`drivers/gl_vbo.c; \
2.1608 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_vbo.Tpo" "$(DEPDIR)/gl_vbo.Po"; else rm -f "$(DEPDIR)/gl_vbo.Tpo"; exit 1; fi
2.1609 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_vbo.c' object='gl_vbo.o' libtool=no @AMDEPBACKSLASH@
2.1610 +liblxdream_core_a-glutil.o: pvr2/glutil.c
2.1611 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-glutil.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-glutil.Tpo" -c -o liblxdream_core_a-glutil.o `test -f 'pvr2/glutil.c' || echo '$(srcdir)/'`pvr2/glutil.c; \
2.1612 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-glutil.Tpo" "$(DEPDIR)/liblxdream_core_a-glutil.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-glutil.Tpo"; exit 1; fi
2.1613 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glutil.c' object='liblxdream_core_a-glutil.o' libtool=no @AMDEPBACKSLASH@
2.1614 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1615 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_vbo.o `test -f 'drivers/gl_vbo.c' || echo '$(srcdir)/'`drivers/gl_vbo.c
2.1616 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-glutil.o `test -f 'pvr2/glutil.c' || echo '$(srcdir)/'`pvr2/glutil.c
2.1617
2.1618 -gl_vbo.obj: drivers/gl_vbo.c
2.1619 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gl_vbo.obj -MD -MP -MF "$(DEPDIR)/gl_vbo.Tpo" -c -o gl_vbo.obj `if test -f 'drivers/gl_vbo.c'; then $(CYGPATH_W) 'drivers/gl_vbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_vbo.c'; fi`; \
2.1620 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gl_vbo.Tpo" "$(DEPDIR)/gl_vbo.Po"; else rm -f "$(DEPDIR)/gl_vbo.Tpo"; exit 1; fi
2.1621 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_vbo.c' object='gl_vbo.obj' libtool=no @AMDEPBACKSLASH@
2.1622 +liblxdream_core_a-glutil.obj: pvr2/glutil.c
2.1623 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-glutil.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-glutil.Tpo" -c -o liblxdream_core_a-glutil.obj `if test -f 'pvr2/glutil.c'; then $(CYGPATH_W) 'pvr2/glutil.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glutil.c'; fi`; \
2.1624 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-glutil.Tpo" "$(DEPDIR)/liblxdream_core_a-glutil.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-glutil.Tpo"; exit 1; fi
2.1625 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glutil.c' object='liblxdream_core_a-glutil.obj' libtool=no @AMDEPBACKSLASH@
2.1626 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1627 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gl_vbo.obj `if test -f 'drivers/gl_vbo.c'; then $(CYGPATH_W) 'drivers/gl_vbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_vbo.c'; fi`
2.1628 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-glutil.obj `if test -f 'pvr2/glutil.c'; then $(CYGPATH_W) 'pvr2/glutil.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glutil.c'; fi`
2.1629
2.1630 -serial_unix.o: drivers/serial_unix.c
2.1631 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT serial_unix.o -MD -MP -MF "$(DEPDIR)/serial_unix.Tpo" -c -o serial_unix.o `test -f 'drivers/serial_unix.c' || echo '$(srcdir)/'`drivers/serial_unix.c; \
2.1632 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/serial_unix.Tpo" "$(DEPDIR)/serial_unix.Po"; else rm -f "$(DEPDIR)/serial_unix.Tpo"; exit 1; fi
2.1633 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/serial_unix.c' object='serial_unix.o' libtool=no @AMDEPBACKSLASH@
2.1634 +liblxdream_core_a-glrender.o: pvr2/glrender.c
2.1635 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-glrender.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-glrender.Tpo" -c -o liblxdream_core_a-glrender.o `test -f 'pvr2/glrender.c' || echo '$(srcdir)/'`pvr2/glrender.c; \
2.1636 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-glrender.Tpo" "$(DEPDIR)/liblxdream_core_a-glrender.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-glrender.Tpo"; exit 1; fi
2.1637 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glrender.c' object='liblxdream_core_a-glrender.o' libtool=no @AMDEPBACKSLASH@
2.1638 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1639 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o serial_unix.o `test -f 'drivers/serial_unix.c' || echo '$(srcdir)/'`drivers/serial_unix.c
2.1640 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-glrender.o `test -f 'pvr2/glrender.c' || echo '$(srcdir)/'`pvr2/glrender.c
2.1641
2.1642 -serial_unix.obj: drivers/serial_unix.c
2.1643 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT serial_unix.obj -MD -MP -MF "$(DEPDIR)/serial_unix.Tpo" -c -o serial_unix.obj `if test -f 'drivers/serial_unix.c'; then $(CYGPATH_W) 'drivers/serial_unix.c'; else $(CYGPATH_W) '$(srcdir)/drivers/serial_unix.c'; fi`; \
2.1644 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/serial_unix.Tpo" "$(DEPDIR)/serial_unix.Po"; else rm -f "$(DEPDIR)/serial_unix.Tpo"; exit 1; fi
2.1645 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/serial_unix.c' object='serial_unix.obj' libtool=no @AMDEPBACKSLASH@
2.1646 +liblxdream_core_a-glrender.obj: pvr2/glrender.c
2.1647 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-glrender.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-glrender.Tpo" -c -o liblxdream_core_a-glrender.obj `if test -f 'pvr2/glrender.c'; then $(CYGPATH_W) 'pvr2/glrender.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glrender.c'; fi`; \
2.1648 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-glrender.Tpo" "$(DEPDIR)/liblxdream_core_a-glrender.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-glrender.Tpo"; exit 1; fi
2.1649 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pvr2/glrender.c' object='liblxdream_core_a-glrender.obj' libtool=no @AMDEPBACKSLASH@
2.1650 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1651 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o serial_unix.obj `if test -f 'drivers/serial_unix.c'; then $(CYGPATH_W) 'drivers/serial_unix.c'; else $(CYGPATH_W) '$(srcdir)/drivers/serial_unix.c'; fi`
2.1652 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-glrender.obj `if test -f 'pvr2/glrender.c'; then $(CYGPATH_W) 'pvr2/glrender.c'; else $(CYGPATH_W) '$(srcdir)/pvr2/glrender.c'; fi`
2.1653
2.1654 -cdrom.o: drivers/cdrom/cdrom.c
2.1655 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdrom.o -MD -MP -MF "$(DEPDIR)/cdrom.Tpo" -c -o cdrom.o `test -f 'drivers/cdrom/cdrom.c' || echo '$(srcdir)/'`drivers/cdrom/cdrom.c; \
2.1656 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cdrom.Tpo" "$(DEPDIR)/cdrom.Po"; else rm -f "$(DEPDIR)/cdrom.Tpo"; exit 1; fi
2.1657 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cdrom.c' object='cdrom.o' libtool=no @AMDEPBACKSLASH@
2.1658 +liblxdream_core_a-maple.o: maple/maple.c
2.1659 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-maple.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-maple.Tpo" -c -o liblxdream_core_a-maple.o `test -f 'maple/maple.c' || echo '$(srcdir)/'`maple/maple.c; \
2.1660 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-maple.Tpo" "$(DEPDIR)/liblxdream_core_a-maple.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-maple.Tpo"; exit 1; fi
2.1661 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/maple.c' object='liblxdream_core_a-maple.o' libtool=no @AMDEPBACKSLASH@
2.1662 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1663 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdrom.o `test -f 'drivers/cdrom/cdrom.c' || echo '$(srcdir)/'`drivers/cdrom/cdrom.c
2.1664 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-maple.o `test -f 'maple/maple.c' || echo '$(srcdir)/'`maple/maple.c
2.1665
2.1666 -cdrom.obj: drivers/cdrom/cdrom.c
2.1667 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cdrom.obj -MD -MP -MF "$(DEPDIR)/cdrom.Tpo" -c -o cdrom.obj `if test -f 'drivers/cdrom/cdrom.c'; then $(CYGPATH_W) 'drivers/cdrom/cdrom.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cdrom.c'; fi`; \
2.1668 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cdrom.Tpo" "$(DEPDIR)/cdrom.Po"; else rm -f "$(DEPDIR)/cdrom.Tpo"; exit 1; fi
2.1669 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cdrom.c' object='cdrom.obj' libtool=no @AMDEPBACKSLASH@
2.1670 +liblxdream_core_a-maple.obj: maple/maple.c
2.1671 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-maple.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-maple.Tpo" -c -o liblxdream_core_a-maple.obj `if test -f 'maple/maple.c'; then $(CYGPATH_W) 'maple/maple.c'; else $(CYGPATH_W) '$(srcdir)/maple/maple.c'; fi`; \
2.1672 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-maple.Tpo" "$(DEPDIR)/liblxdream_core_a-maple.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-maple.Tpo"; exit 1; fi
2.1673 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/maple.c' object='liblxdream_core_a-maple.obj' libtool=no @AMDEPBACKSLASH@
2.1674 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1675 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cdrom.obj `if test -f 'drivers/cdrom/cdrom.c'; then $(CYGPATH_W) 'drivers/cdrom/cdrom.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cdrom.c'; fi`
2.1676 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-maple.obj `if test -f 'maple/maple.c'; then $(CYGPATH_W) 'maple/maple.c'; else $(CYGPATH_W) '$(srcdir)/maple/maple.c'; fi`
2.1677
2.1678 -sector.o: drivers/cdrom/sector.c
2.1679 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sector.o -MD -MP -MF "$(DEPDIR)/sector.Tpo" -c -o sector.o `test -f 'drivers/cdrom/sector.c' || echo '$(srcdir)/'`drivers/cdrom/sector.c; \
2.1680 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sector.Tpo" "$(DEPDIR)/sector.Po"; else rm -f "$(DEPDIR)/sector.Tpo"; exit 1; fi
2.1681 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/sector.c' object='sector.o' libtool=no @AMDEPBACKSLASH@
2.1682 +liblxdream_core_a-controller.o: maple/controller.c
2.1683 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-controller.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-controller.Tpo" -c -o liblxdream_core_a-controller.o `test -f 'maple/controller.c' || echo '$(srcdir)/'`maple/controller.c; \
2.1684 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-controller.Tpo" "$(DEPDIR)/liblxdream_core_a-controller.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-controller.Tpo"; exit 1; fi
2.1685 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/controller.c' object='liblxdream_core_a-controller.o' libtool=no @AMDEPBACKSLASH@
2.1686 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1687 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sector.o `test -f 'drivers/cdrom/sector.c' || echo '$(srcdir)/'`drivers/cdrom/sector.c
2.1688 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-controller.o `test -f 'maple/controller.c' || echo '$(srcdir)/'`maple/controller.c
2.1689
2.1690 -sector.obj: drivers/cdrom/sector.c
2.1691 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sector.obj -MD -MP -MF "$(DEPDIR)/sector.Tpo" -c -o sector.obj `if test -f 'drivers/cdrom/sector.c'; then $(CYGPATH_W) 'drivers/cdrom/sector.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/sector.c'; fi`; \
2.1692 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sector.Tpo" "$(DEPDIR)/sector.Po"; else rm -f "$(DEPDIR)/sector.Tpo"; exit 1; fi
2.1693 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/sector.c' object='sector.obj' libtool=no @AMDEPBACKSLASH@
2.1694 +liblxdream_core_a-controller.obj: maple/controller.c
2.1695 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-controller.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-controller.Tpo" -c -o liblxdream_core_a-controller.obj `if test -f 'maple/controller.c'; then $(CYGPATH_W) 'maple/controller.c'; else $(CYGPATH_W) '$(srcdir)/maple/controller.c'; fi`; \
2.1696 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-controller.Tpo" "$(DEPDIR)/liblxdream_core_a-controller.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-controller.Tpo"; exit 1; fi
2.1697 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/controller.c' object='liblxdream_core_a-controller.obj' libtool=no @AMDEPBACKSLASH@
2.1698 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1699 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sector.obj `if test -f 'drivers/cdrom/sector.c'; then $(CYGPATH_W) 'drivers/cdrom/sector.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/sector.c'; fi`
2.1700 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-controller.obj `if test -f 'maple/controller.c'; then $(CYGPATH_W) 'maple/controller.c'; else $(CYGPATH_W) '$(srcdir)/maple/controller.c'; fi`
2.1701
2.1702 -cd_nrg.o: drivers/cdrom/cd_nrg.c
2.1703 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_nrg.o -MD -MP -MF "$(DEPDIR)/cd_nrg.Tpo" -c -o cd_nrg.o `test -f 'drivers/cdrom/cd_nrg.c' || echo '$(srcdir)/'`drivers/cdrom/cd_nrg.c; \
2.1704 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_nrg.Tpo" "$(DEPDIR)/cd_nrg.Po"; else rm -f "$(DEPDIR)/cd_nrg.Tpo"; exit 1; fi
2.1705 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_nrg.c' object='cd_nrg.o' libtool=no @AMDEPBACKSLASH@
2.1706 +liblxdream_core_a-kbd.o: maple/kbd.c
2.1707 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-kbd.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-kbd.Tpo" -c -o liblxdream_core_a-kbd.o `test -f 'maple/kbd.c' || echo '$(srcdir)/'`maple/kbd.c; \
2.1708 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-kbd.Tpo" "$(DEPDIR)/liblxdream_core_a-kbd.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-kbd.Tpo"; exit 1; fi
2.1709 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/kbd.c' object='liblxdream_core_a-kbd.o' libtool=no @AMDEPBACKSLASH@
2.1710 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1711 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_nrg.o `test -f 'drivers/cdrom/cd_nrg.c' || echo '$(srcdir)/'`drivers/cdrom/cd_nrg.c
2.1712 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-kbd.o `test -f 'maple/kbd.c' || echo '$(srcdir)/'`maple/kbd.c
2.1713
2.1714 -cd_nrg.obj: drivers/cdrom/cd_nrg.c
2.1715 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_nrg.obj -MD -MP -MF "$(DEPDIR)/cd_nrg.Tpo" -c -o cd_nrg.obj `if test -f 'drivers/cdrom/cd_nrg.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_nrg.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_nrg.c'; fi`; \
2.1716 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_nrg.Tpo" "$(DEPDIR)/cd_nrg.Po"; else rm -f "$(DEPDIR)/cd_nrg.Tpo"; exit 1; fi
2.1717 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_nrg.c' object='cd_nrg.obj' libtool=no @AMDEPBACKSLASH@
2.1718 +liblxdream_core_a-kbd.obj: maple/kbd.c
2.1719 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-kbd.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-kbd.Tpo" -c -o liblxdream_core_a-kbd.obj `if test -f 'maple/kbd.c'; then $(CYGPATH_W) 'maple/kbd.c'; else $(CYGPATH_W) '$(srcdir)/maple/kbd.c'; fi`; \
2.1720 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-kbd.Tpo" "$(DEPDIR)/liblxdream_core_a-kbd.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-kbd.Tpo"; exit 1; fi
2.1721 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/kbd.c' object='liblxdream_core_a-kbd.obj' libtool=no @AMDEPBACKSLASH@
2.1722 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1723 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_nrg.obj `if test -f 'drivers/cdrom/cd_nrg.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_nrg.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_nrg.c'; fi`
2.1724 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-kbd.obj `if test -f 'maple/kbd.c'; then $(CYGPATH_W) 'maple/kbd.c'; else $(CYGPATH_W) '$(srcdir)/maple/kbd.c'; fi`
2.1725
2.1726 -cd_cdi.o: drivers/cdrom/cd_cdi.c
2.1727 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_cdi.o -MD -MP -MF "$(DEPDIR)/cd_cdi.Tpo" -c -o cd_cdi.o `test -f 'drivers/cdrom/cd_cdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_cdi.c; \
2.1728 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_cdi.Tpo" "$(DEPDIR)/cd_cdi.Po"; else rm -f "$(DEPDIR)/cd_cdi.Tpo"; exit 1; fi
2.1729 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_cdi.c' object='cd_cdi.o' libtool=no @AMDEPBACKSLASH@
2.1730 +liblxdream_core_a-mouse.o: maple/mouse.c
2.1731 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mouse.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mouse.Tpo" -c -o liblxdream_core_a-mouse.o `test -f 'maple/mouse.c' || echo '$(srcdir)/'`maple/mouse.c; \
2.1732 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mouse.Tpo" "$(DEPDIR)/liblxdream_core_a-mouse.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mouse.Tpo"; exit 1; fi
2.1733 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/mouse.c' object='liblxdream_core_a-mouse.o' libtool=no @AMDEPBACKSLASH@
2.1734 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1735 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_cdi.o `test -f 'drivers/cdrom/cd_cdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_cdi.c
2.1736 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mouse.o `test -f 'maple/mouse.c' || echo '$(srcdir)/'`maple/mouse.c
2.1737
2.1738 -cd_cdi.obj: drivers/cdrom/cd_cdi.c
2.1739 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_cdi.obj -MD -MP -MF "$(DEPDIR)/cd_cdi.Tpo" -c -o cd_cdi.obj `if test -f 'drivers/cdrom/cd_cdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_cdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_cdi.c'; fi`; \
2.1740 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_cdi.Tpo" "$(DEPDIR)/cd_cdi.Po"; else rm -f "$(DEPDIR)/cd_cdi.Tpo"; exit 1; fi
2.1741 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_cdi.c' object='cd_cdi.obj' libtool=no @AMDEPBACKSLASH@
2.1742 +liblxdream_core_a-mouse.obj: maple/mouse.c
2.1743 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mouse.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mouse.Tpo" -c -o liblxdream_core_a-mouse.obj `if test -f 'maple/mouse.c'; then $(CYGPATH_W) 'maple/mouse.c'; else $(CYGPATH_W) '$(srcdir)/maple/mouse.c'; fi`; \
2.1744 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mouse.Tpo" "$(DEPDIR)/liblxdream_core_a-mouse.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mouse.Tpo"; exit 1; fi
2.1745 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/mouse.c' object='liblxdream_core_a-mouse.obj' libtool=no @AMDEPBACKSLASH@
2.1746 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1747 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_cdi.obj `if test -f 'drivers/cdrom/cd_cdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_cdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_cdi.c'; fi`
2.1748 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mouse.obj `if test -f 'maple/mouse.c'; then $(CYGPATH_W) 'maple/mouse.c'; else $(CYGPATH_W) '$(srcdir)/maple/mouse.c'; fi`
2.1749
2.1750 -cd_gdi.o: drivers/cdrom/cd_gdi.c
2.1751 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_gdi.o -MD -MP -MF "$(DEPDIR)/cd_gdi.Tpo" -c -o cd_gdi.o `test -f 'drivers/cdrom/cd_gdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_gdi.c; \
2.1752 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_gdi.Tpo" "$(DEPDIR)/cd_gdi.Po"; else rm -f "$(DEPDIR)/cd_gdi.Tpo"; exit 1; fi
2.1753 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_gdi.c' object='cd_gdi.o' libtool=no @AMDEPBACKSLASH@
2.1754 +liblxdream_core_a-lightgun.o: maple/lightgun.c
2.1755 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-lightgun.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo" -c -o liblxdream_core_a-lightgun.o `test -f 'maple/lightgun.c' || echo '$(srcdir)/'`maple/lightgun.c; \
2.1756 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo" "$(DEPDIR)/liblxdream_core_a-lightgun.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo"; exit 1; fi
2.1757 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/lightgun.c' object='liblxdream_core_a-lightgun.o' libtool=no @AMDEPBACKSLASH@
2.1758 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1759 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_gdi.o `test -f 'drivers/cdrom/cd_gdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_gdi.c
2.1760 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-lightgun.o `test -f 'maple/lightgun.c' || echo '$(srcdir)/'`maple/lightgun.c
2.1761
2.1762 -cd_gdi.obj: drivers/cdrom/cd_gdi.c
2.1763 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_gdi.obj -MD -MP -MF "$(DEPDIR)/cd_gdi.Tpo" -c -o cd_gdi.obj `if test -f 'drivers/cdrom/cd_gdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_gdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_gdi.c'; fi`; \
2.1764 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_gdi.Tpo" "$(DEPDIR)/cd_gdi.Po"; else rm -f "$(DEPDIR)/cd_gdi.Tpo"; exit 1; fi
2.1765 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_gdi.c' object='cd_gdi.obj' libtool=no @AMDEPBACKSLASH@
2.1766 +liblxdream_core_a-lightgun.obj: maple/lightgun.c
2.1767 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-lightgun.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo" -c -o liblxdream_core_a-lightgun.obj `if test -f 'maple/lightgun.c'; then $(CYGPATH_W) 'maple/lightgun.c'; else $(CYGPATH_W) '$(srcdir)/maple/lightgun.c'; fi`; \
2.1768 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo" "$(DEPDIR)/liblxdream_core_a-lightgun.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-lightgun.Tpo"; exit 1; fi
2.1769 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/lightgun.c' object='liblxdream_core_a-lightgun.obj' libtool=no @AMDEPBACKSLASH@
2.1770 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1771 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_gdi.obj `if test -f 'drivers/cdrom/cd_gdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_gdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_gdi.c'; fi`
2.1772 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-lightgun.obj `if test -f 'maple/lightgun.c'; then $(CYGPATH_W) 'maple/lightgun.c'; else $(CYGPATH_W) '$(srcdir)/maple/lightgun.c'; fi`
2.1773
2.1774 -edc_ecc.o: drivers/cdrom/edc_ecc.c
2.1775 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT edc_ecc.o -MD -MP -MF "$(DEPDIR)/edc_ecc.Tpo" -c -o edc_ecc.o `test -f 'drivers/cdrom/edc_ecc.c' || echo '$(srcdir)/'`drivers/cdrom/edc_ecc.c; \
2.1776 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/edc_ecc.Tpo" "$(DEPDIR)/edc_ecc.Po"; else rm -f "$(DEPDIR)/edc_ecc.Tpo"; exit 1; fi
2.1777 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/edc_ecc.c' object='edc_ecc.o' libtool=no @AMDEPBACKSLASH@
2.1778 +liblxdream_core_a-vmu.o: maple/vmu.c
2.1779 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmu.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmu.Tpo" -c -o liblxdream_core_a-vmu.o `test -f 'maple/vmu.c' || echo '$(srcdir)/'`maple/vmu.c; \
2.1780 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmu.Tpo" "$(DEPDIR)/liblxdream_core_a-vmu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmu.Tpo"; exit 1; fi
2.1781 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/vmu.c' object='liblxdream_core_a-vmu.o' libtool=no @AMDEPBACKSLASH@
2.1782 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1783 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o edc_ecc.o `test -f 'drivers/cdrom/edc_ecc.c' || echo '$(srcdir)/'`drivers/cdrom/edc_ecc.c
2.1784 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmu.o `test -f 'maple/vmu.c' || echo '$(srcdir)/'`maple/vmu.c
2.1785
2.1786 -edc_ecc.obj: drivers/cdrom/edc_ecc.c
2.1787 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT edc_ecc.obj -MD -MP -MF "$(DEPDIR)/edc_ecc.Tpo" -c -o edc_ecc.obj `if test -f 'drivers/cdrom/edc_ecc.c'; then $(CYGPATH_W) 'drivers/cdrom/edc_ecc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/edc_ecc.c'; fi`; \
2.1788 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/edc_ecc.Tpo" "$(DEPDIR)/edc_ecc.Po"; else rm -f "$(DEPDIR)/edc_ecc.Tpo"; exit 1; fi
2.1789 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/edc_ecc.c' object='edc_ecc.obj' libtool=no @AMDEPBACKSLASH@
2.1790 +liblxdream_core_a-vmu.obj: maple/vmu.c
2.1791 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmu.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmu.Tpo" -c -o liblxdream_core_a-vmu.obj `if test -f 'maple/vmu.c'; then $(CYGPATH_W) 'maple/vmu.c'; else $(CYGPATH_W) '$(srcdir)/maple/vmu.c'; fi`; \
2.1792 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmu.Tpo" "$(DEPDIR)/liblxdream_core_a-vmu.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmu.Tpo"; exit 1; fi
2.1793 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maple/vmu.c' object='liblxdream_core_a-vmu.obj' libtool=no @AMDEPBACKSLASH@
2.1794 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1795 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o edc_ecc.obj `if test -f 'drivers/cdrom/edc_ecc.c'; then $(CYGPATH_W) 'drivers/cdrom/edc_ecc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/edc_ecc.c'; fi`
2.1796 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmu.obj `if test -f 'maple/vmu.c'; then $(CYGPATH_W) 'maple/vmu.c'; else $(CYGPATH_W) '$(srcdir)/maple/vmu.c'; fi`
2.1797
2.1798 -drive.o: drivers/cdrom/drive.c
2.1799 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drive.o -MD -MP -MF "$(DEPDIR)/drive.Tpo" -c -o drive.o `test -f 'drivers/cdrom/drive.c' || echo '$(srcdir)/'`drivers/cdrom/drive.c; \
2.1800 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/drive.Tpo" "$(DEPDIR)/drive.Po"; else rm -f "$(DEPDIR)/drive.Tpo"; exit 1; fi
2.1801 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/drive.c' object='drive.o' libtool=no @AMDEPBACKSLASH@
2.1802 +liblxdream_core_a-loader.o: loader.c
2.1803 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-loader.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-loader.Tpo" -c -o liblxdream_core_a-loader.o `test -f 'loader.c' || echo '$(srcdir)/'`loader.c; \
2.1804 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-loader.Tpo" "$(DEPDIR)/liblxdream_core_a-loader.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-loader.Tpo"; exit 1; fi
2.1805 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='loader.c' object='liblxdream_core_a-loader.o' libtool=no @AMDEPBACKSLASH@
2.1806 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1807 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drive.o `test -f 'drivers/cdrom/drive.c' || echo '$(srcdir)/'`drivers/cdrom/drive.c
2.1808 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-loader.o `test -f 'loader.c' || echo '$(srcdir)/'`loader.c
2.1809
2.1810 -drive.obj: drivers/cdrom/drive.c
2.1811 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drive.obj -MD -MP -MF "$(DEPDIR)/drive.Tpo" -c -o drive.obj `if test -f 'drivers/cdrom/drive.c'; then $(CYGPATH_W) 'drivers/cdrom/drive.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/drive.c'; fi`; \
2.1812 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/drive.Tpo" "$(DEPDIR)/drive.Po"; else rm -f "$(DEPDIR)/drive.Tpo"; exit 1; fi
2.1813 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/drive.c' object='drive.obj' libtool=no @AMDEPBACKSLASH@
2.1814 +liblxdream_core_a-loader.obj: loader.c
2.1815 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-loader.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-loader.Tpo" -c -o liblxdream_core_a-loader.obj `if test -f 'loader.c'; then $(CYGPATH_W) 'loader.c'; else $(CYGPATH_W) '$(srcdir)/loader.c'; fi`; \
2.1816 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-loader.Tpo" "$(DEPDIR)/liblxdream_core_a-loader.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-loader.Tpo"; exit 1; fi
2.1817 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='loader.c' object='liblxdream_core_a-loader.obj' libtool=no @AMDEPBACKSLASH@
2.1818 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1819 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drive.obj `if test -f 'drivers/cdrom/drive.c'; then $(CYGPATH_W) 'drivers/cdrom/drive.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/drive.c'; fi`
2.1820 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-loader.obj `if test -f 'loader.c'; then $(CYGPATH_W) 'loader.c'; else $(CYGPATH_W) '$(srcdir)/loader.c'; fi`
2.1821
2.1822 -cd_mmc.o: drivers/cdrom/cd_mmc.c
2.1823 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_mmc.o -MD -MP -MF "$(DEPDIR)/cd_mmc.Tpo" -c -o cd_mmc.o `test -f 'drivers/cdrom/cd_mmc.c' || echo '$(srcdir)/'`drivers/cdrom/cd_mmc.c; \
2.1824 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_mmc.Tpo" "$(DEPDIR)/cd_mmc.Po"; else rm -f "$(DEPDIR)/cd_mmc.Tpo"; exit 1; fi
2.1825 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_mmc.c' object='cd_mmc.o' libtool=no @AMDEPBACKSLASH@
2.1826 +liblxdream_core_a-bootstrap.o: bootstrap.c
2.1827 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-bootstrap.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo" -c -o liblxdream_core_a-bootstrap.o `test -f 'bootstrap.c' || echo '$(srcdir)/'`bootstrap.c; \
2.1828 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo" "$(DEPDIR)/liblxdream_core_a-bootstrap.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo"; exit 1; fi
2.1829 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bootstrap.c' object='liblxdream_core_a-bootstrap.o' libtool=no @AMDEPBACKSLASH@
2.1830 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1831 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_mmc.o `test -f 'drivers/cdrom/cd_mmc.c' || echo '$(srcdir)/'`drivers/cdrom/cd_mmc.c
2.1832 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-bootstrap.o `test -f 'bootstrap.c' || echo '$(srcdir)/'`bootstrap.c
2.1833
2.1834 -cd_mmc.obj: drivers/cdrom/cd_mmc.c
2.1835 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_mmc.obj -MD -MP -MF "$(DEPDIR)/cd_mmc.Tpo" -c -o cd_mmc.obj `if test -f 'drivers/cdrom/cd_mmc.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_mmc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_mmc.c'; fi`; \
2.1836 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_mmc.Tpo" "$(DEPDIR)/cd_mmc.Po"; else rm -f "$(DEPDIR)/cd_mmc.Tpo"; exit 1; fi
2.1837 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_mmc.c' object='cd_mmc.obj' libtool=no @AMDEPBACKSLASH@
2.1838 +liblxdream_core_a-bootstrap.obj: bootstrap.c
2.1839 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-bootstrap.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo" -c -o liblxdream_core_a-bootstrap.obj `if test -f 'bootstrap.c'; then $(CYGPATH_W) 'bootstrap.c'; else $(CYGPATH_W) '$(srcdir)/bootstrap.c'; fi`; \
2.1840 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo" "$(DEPDIR)/liblxdream_core_a-bootstrap.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-bootstrap.Tpo"; exit 1; fi
2.1841 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='bootstrap.c' object='liblxdream_core_a-bootstrap.obj' libtool=no @AMDEPBACKSLASH@
2.1842 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1843 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_mmc.obj `if test -f 'drivers/cdrom/cd_mmc.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_mmc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_mmc.c'; fi`
2.1844 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-bootstrap.obj `if test -f 'bootstrap.c'; then $(CYGPATH_W) 'bootstrap.c'; else $(CYGPATH_W) '$(srcdir)/bootstrap.c'; fi`
2.1845
2.1846 -isofs.o: drivers/cdrom/isofs.c
2.1847 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT isofs.o -MD -MP -MF "$(DEPDIR)/isofs.Tpo" -c -o isofs.o `test -f 'drivers/cdrom/isofs.c' || echo '$(srcdir)/'`drivers/cdrom/isofs.c; \
2.1848 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/isofs.Tpo" "$(DEPDIR)/isofs.Po"; else rm -f "$(DEPDIR)/isofs.Tpo"; exit 1; fi
2.1849 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isofs.c' object='isofs.o' libtool=no @AMDEPBACKSLASH@
2.1850 +liblxdream_core_a-util.o: util.c
2.1851 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-util.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-util.Tpo" -c -o liblxdream_core_a-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c; \
2.1852 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-util.Tpo" "$(DEPDIR)/liblxdream_core_a-util.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-util.Tpo"; exit 1; fi
2.1853 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='util.c' object='liblxdream_core_a-util.o' libtool=no @AMDEPBACKSLASH@
2.1854 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1855 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o isofs.o `test -f 'drivers/cdrom/isofs.c' || echo '$(srcdir)/'`drivers/cdrom/isofs.c
2.1856 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c
2.1857
2.1858 -isofs.obj: drivers/cdrom/isofs.c
2.1859 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT isofs.obj -MD -MP -MF "$(DEPDIR)/isofs.Tpo" -c -o isofs.obj `if test -f 'drivers/cdrom/isofs.c'; then $(CYGPATH_W) 'drivers/cdrom/isofs.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isofs.c'; fi`; \
2.1860 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/isofs.Tpo" "$(DEPDIR)/isofs.Po"; else rm -f "$(DEPDIR)/isofs.Tpo"; exit 1; fi
2.1861 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isofs.c' object='isofs.obj' libtool=no @AMDEPBACKSLASH@
2.1862 +liblxdream_core_a-util.obj: util.c
2.1863 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-util.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-util.Tpo" -c -o liblxdream_core_a-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi`; \
2.1864 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-util.Tpo" "$(DEPDIR)/liblxdream_core_a-util.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-util.Tpo"; exit 1; fi
2.1865 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='util.c' object='liblxdream_core_a-util.obj' libtool=no @AMDEPBACKSLASH@
2.1866 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1867 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o isofs.obj `if test -f 'drivers/cdrom/isofs.c'; then $(CYGPATH_W) 'drivers/cdrom/isofs.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isofs.c'; fi`
2.1868 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi`
2.1869
2.1870 -isomem.o: drivers/cdrom/isomem.c
2.1871 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT isomem.o -MD -MP -MF "$(DEPDIR)/isomem.Tpo" -c -o isomem.o `test -f 'drivers/cdrom/isomem.c' || echo '$(srcdir)/'`drivers/cdrom/isomem.c; \
2.1872 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/isomem.Tpo" "$(DEPDIR)/isomem.Po"; else rm -f "$(DEPDIR)/isomem.Tpo"; exit 1; fi
2.1873 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isomem.c' object='isomem.o' libtool=no @AMDEPBACKSLASH@
2.1874 +liblxdream_core_a-gdlist.o: gdlist.c
2.1875 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdlist.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo" -c -o liblxdream_core_a-gdlist.o `test -f 'gdlist.c' || echo '$(srcdir)/'`gdlist.c; \
2.1876 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo" "$(DEPDIR)/liblxdream_core_a-gdlist.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo"; exit 1; fi
2.1877 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdlist.c' object='liblxdream_core_a-gdlist.o' libtool=no @AMDEPBACKSLASH@
2.1878 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1879 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o isomem.o `test -f 'drivers/cdrom/isomem.c' || echo '$(srcdir)/'`drivers/cdrom/isomem.c
2.1880 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdlist.o `test -f 'gdlist.c' || echo '$(srcdir)/'`gdlist.c
2.1881
2.1882 -isomem.obj: drivers/cdrom/isomem.c
2.1883 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT isomem.obj -MD -MP -MF "$(DEPDIR)/isomem.Tpo" -c -o isomem.obj `if test -f 'drivers/cdrom/isomem.c'; then $(CYGPATH_W) 'drivers/cdrom/isomem.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isomem.c'; fi`; \
2.1884 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/isomem.Tpo" "$(DEPDIR)/isomem.Po"; else rm -f "$(DEPDIR)/isomem.Tpo"; exit 1; fi
2.1885 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isomem.c' object='isomem.obj' libtool=no @AMDEPBACKSLASH@
2.1886 +liblxdream_core_a-gdlist.obj: gdlist.c
2.1887 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gdlist.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo" -c -o liblxdream_core_a-gdlist.obj `if test -f 'gdlist.c'; then $(CYGPATH_W) 'gdlist.c'; else $(CYGPATH_W) '$(srcdir)/gdlist.c'; fi`; \
2.1888 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo" "$(DEPDIR)/liblxdream_core_a-gdlist.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gdlist.Tpo"; exit 1; fi
2.1889 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdlist.c' object='liblxdream_core_a-gdlist.obj' libtool=no @AMDEPBACKSLASH@
2.1890 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1891 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o isomem.obj `if test -f 'drivers/cdrom/isomem.c'; then $(CYGPATH_W) 'drivers/cdrom/isomem.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isomem.c'; fi`
2.1892 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gdlist.obj `if test -f 'gdlist.c'; then $(CYGPATH_W) 'gdlist.c'; else $(CYGPATH_W) '$(srcdir)/gdlist.c'; fi`
2.1893
2.1894 -sh4x86.o: sh4/sh4x86.c
2.1895 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4x86.o -MD -MP -MF "$(DEPDIR)/sh4x86.Tpo" -c -o sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c; \
2.1896 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4x86.Tpo" "$(DEPDIR)/sh4x86.Po"; else rm -f "$(DEPDIR)/sh4x86.Tpo"; exit 1; fi
2.1897 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='sh4x86.o' libtool=no @AMDEPBACKSLASH@
2.1898 +liblxdream_core_a-vmuvol.o: vmu/vmuvol.c
2.1899 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmuvol.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo" -c -o liblxdream_core_a-vmuvol.o `test -f 'vmu/vmuvol.c' || echo '$(srcdir)/'`vmu/vmuvol.c; \
2.1900 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo" "$(DEPDIR)/liblxdream_core_a-vmuvol.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo"; exit 1; fi
2.1901 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmuvol.c' object='liblxdream_core_a-vmuvol.o' libtool=no @AMDEPBACKSLASH@
2.1902 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1903 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c
2.1904 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmuvol.o `test -f 'vmu/vmuvol.c' || echo '$(srcdir)/'`vmu/vmuvol.c
2.1905
2.1906 -sh4x86.obj: sh4/sh4x86.c
2.1907 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4x86.obj -MD -MP -MF "$(DEPDIR)/sh4x86.Tpo" -c -o sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`; \
2.1908 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4x86.Tpo" "$(DEPDIR)/sh4x86.Po"; else rm -f "$(DEPDIR)/sh4x86.Tpo"; exit 1; fi
2.1909 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='sh4x86.obj' libtool=no @AMDEPBACKSLASH@
2.1910 +liblxdream_core_a-vmuvol.obj: vmu/vmuvol.c
2.1911 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmuvol.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo" -c -o liblxdream_core_a-vmuvol.obj `if test -f 'vmu/vmuvol.c'; then $(CYGPATH_W) 'vmu/vmuvol.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmuvol.c'; fi`; \
2.1912 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo" "$(DEPDIR)/liblxdream_core_a-vmuvol.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmuvol.Tpo"; exit 1; fi
2.1913 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmuvol.c' object='liblxdream_core_a-vmuvol.obj' libtool=no @AMDEPBACKSLASH@
2.1914 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1915 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`
2.1916 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmuvol.obj `if test -f 'vmu/vmuvol.c'; then $(CYGPATH_W) 'vmu/vmuvol.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmuvol.c'; fi`
2.1917
2.1918 -sh4trans.o: sh4/sh4trans.c
2.1919 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4trans.o -MD -MP -MF "$(DEPDIR)/sh4trans.Tpo" -c -o sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c; \
2.1920 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4trans.Tpo" "$(DEPDIR)/sh4trans.Po"; else rm -f "$(DEPDIR)/sh4trans.Tpo"; exit 1; fi
2.1921 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='sh4trans.o' libtool=no @AMDEPBACKSLASH@
2.1922 +liblxdream_core_a-vmulist.o: vmu/vmulist.c
2.1923 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmulist.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo" -c -o liblxdream_core_a-vmulist.o `test -f 'vmu/vmulist.c' || echo '$(srcdir)/'`vmu/vmulist.c; \
2.1924 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo" "$(DEPDIR)/liblxdream_core_a-vmulist.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo"; exit 1; fi
2.1925 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmulist.c' object='liblxdream_core_a-vmulist.o' libtool=no @AMDEPBACKSLASH@
2.1926 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1927 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c
2.1928 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmulist.o `test -f 'vmu/vmulist.c' || echo '$(srcdir)/'`vmu/vmulist.c
2.1929
2.1930 -sh4trans.obj: sh4/sh4trans.c
2.1931 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4trans.obj -MD -MP -MF "$(DEPDIR)/sh4trans.Tpo" -c -o sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`; \
2.1932 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4trans.Tpo" "$(DEPDIR)/sh4trans.Po"; else rm -f "$(DEPDIR)/sh4trans.Tpo"; exit 1; fi
2.1933 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='sh4trans.obj' libtool=no @AMDEPBACKSLASH@
2.1934 +liblxdream_core_a-vmulist.obj: vmu/vmulist.c
2.1935 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-vmulist.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo" -c -o liblxdream_core_a-vmulist.obj `if test -f 'vmu/vmulist.c'; then $(CYGPATH_W) 'vmu/vmulist.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmulist.c'; fi`; \
2.1936 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo" "$(DEPDIR)/liblxdream_core_a-vmulist.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-vmulist.Tpo"; exit 1; fi
2.1937 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='vmu/vmulist.c' object='liblxdream_core_a-vmulist.obj' libtool=no @AMDEPBACKSLASH@
2.1938 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1939 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`
2.1940 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-vmulist.obj `if test -f 'vmu/vmulist.c'; then $(CYGPATH_W) 'vmu/vmulist.c'; else $(CYGPATH_W) '$(srcdir)/vmu/vmulist.c'; fi`
2.1941
2.1942 -mmux86.o: sh4/mmux86.c
2.1943 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mmux86.o -MD -MP -MF "$(DEPDIR)/mmux86.Tpo" -c -o mmux86.o `test -f 'sh4/mmux86.c' || echo '$(srcdir)/'`sh4/mmux86.c; \
2.1944 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mmux86.Tpo" "$(DEPDIR)/mmux86.Po"; else rm -f "$(DEPDIR)/mmux86.Tpo"; exit 1; fi
2.1945 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmux86.c' object='mmux86.o' libtool=no @AMDEPBACKSLASH@
2.1946 +liblxdream_core_a-display.o: display.c
2.1947 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-display.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-display.Tpo" -c -o liblxdream_core_a-display.o `test -f 'display.c' || echo '$(srcdir)/'`display.c; \
2.1948 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-display.Tpo" "$(DEPDIR)/liblxdream_core_a-display.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-display.Tpo"; exit 1; fi
2.1949 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='display.c' object='liblxdream_core_a-display.o' libtool=no @AMDEPBACKSLASH@
2.1950 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1951 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mmux86.o `test -f 'sh4/mmux86.c' || echo '$(srcdir)/'`sh4/mmux86.c
2.1952 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-display.o `test -f 'display.c' || echo '$(srcdir)/'`display.c
2.1953
2.1954 -mmux86.obj: sh4/mmux86.c
2.1955 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mmux86.obj -MD -MP -MF "$(DEPDIR)/mmux86.Tpo" -c -o mmux86.obj `if test -f 'sh4/mmux86.c'; then $(CYGPATH_W) 'sh4/mmux86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmux86.c'; fi`; \
2.1956 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mmux86.Tpo" "$(DEPDIR)/mmux86.Po"; else rm -f "$(DEPDIR)/mmux86.Tpo"; exit 1; fi
2.1957 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmux86.c' object='mmux86.obj' libtool=no @AMDEPBACKSLASH@
2.1958 +liblxdream_core_a-display.obj: display.c
2.1959 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-display.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-display.Tpo" -c -o liblxdream_core_a-display.obj `if test -f 'display.c'; then $(CYGPATH_W) 'display.c'; else $(CYGPATH_W) '$(srcdir)/display.c'; fi`; \
2.1960 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-display.Tpo" "$(DEPDIR)/liblxdream_core_a-display.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-display.Tpo"; exit 1; fi
2.1961 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='display.c' object='liblxdream_core_a-display.obj' libtool=no @AMDEPBACKSLASH@
2.1962 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1963 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mmux86.obj `if test -f 'sh4/mmux86.c'; then $(CYGPATH_W) 'sh4/mmux86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmux86.c'; fi`
2.1964 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-display.obj `if test -f 'display.c'; then $(CYGPATH_W) 'display.c'; else $(CYGPATH_W) '$(srcdir)/display.c'; fi`
2.1965
2.1966 -shadow.o: sh4/shadow.c
2.1967 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shadow.o -MD -MP -MF "$(DEPDIR)/shadow.Tpo" -c -o shadow.o `test -f 'sh4/shadow.c' || echo '$(srcdir)/'`sh4/shadow.c; \
2.1968 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/shadow.Tpo" "$(DEPDIR)/shadow.Po"; else rm -f "$(DEPDIR)/shadow.Tpo"; exit 1; fi
2.1969 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/shadow.c' object='shadow.o' libtool=no @AMDEPBACKSLASH@
2.1970 +liblxdream_core_a-audio_null.o: drivers/audio_null.c
2.1971 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-audio_null.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo" -c -o liblxdream_core_a-audio_null.o `test -f 'drivers/audio_null.c' || echo '$(srcdir)/'`drivers/audio_null.c; \
2.1972 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo" "$(DEPDIR)/liblxdream_core_a-audio_null.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo"; exit 1; fi
2.1973 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_null.c' object='liblxdream_core_a-audio_null.o' libtool=no @AMDEPBACKSLASH@
2.1974 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1975 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shadow.o `test -f 'sh4/shadow.c' || echo '$(srcdir)/'`sh4/shadow.c
2.1976 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-audio_null.o `test -f 'drivers/audio_null.c' || echo '$(srcdir)/'`drivers/audio_null.c
2.1977
2.1978 -shadow.obj: sh4/shadow.c
2.1979 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shadow.obj -MD -MP -MF "$(DEPDIR)/shadow.Tpo" -c -o shadow.obj `if test -f 'sh4/shadow.c'; then $(CYGPATH_W) 'sh4/shadow.c'; else $(CYGPATH_W) '$(srcdir)/sh4/shadow.c'; fi`; \
2.1980 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/shadow.Tpo" "$(DEPDIR)/shadow.Po"; else rm -f "$(DEPDIR)/shadow.Tpo"; exit 1; fi
2.1981 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/shadow.c' object='shadow.obj' libtool=no @AMDEPBACKSLASH@
2.1982 +liblxdream_core_a-audio_null.obj: drivers/audio_null.c
2.1983 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-audio_null.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo" -c -o liblxdream_core_a-audio_null.obj `if test -f 'drivers/audio_null.c'; then $(CYGPATH_W) 'drivers/audio_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_null.c'; fi`; \
2.1984 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo" "$(DEPDIR)/liblxdream_core_a-audio_null.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-audio_null.Tpo"; exit 1; fi
2.1985 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_null.c' object='liblxdream_core_a-audio_null.obj' libtool=no @AMDEPBACKSLASH@
2.1986 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1987 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shadow.obj `if test -f 'sh4/shadow.c'; then $(CYGPATH_W) 'sh4/shadow.c'; else $(CYGPATH_W) '$(srcdir)/sh4/shadow.c'; fi`
2.1988 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-audio_null.obj `if test -f 'drivers/audio_null.c'; then $(CYGPATH_W) 'drivers/audio_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_null.c'; fi`
2.1989 +
2.1990 +liblxdream_core_a-video_null.o: drivers/video_null.c
2.1991 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-video_null.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-video_null.Tpo" -c -o liblxdream_core_a-video_null.o `test -f 'drivers/video_null.c' || echo '$(srcdir)/'`drivers/video_null.c; \
2.1992 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-video_null.Tpo" "$(DEPDIR)/liblxdream_core_a-video_null.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-video_null.Tpo"; exit 1; fi
2.1993 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_null.c' object='liblxdream_core_a-video_null.o' libtool=no @AMDEPBACKSLASH@
2.1994 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.1995 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-video_null.o `test -f 'drivers/video_null.c' || echo '$(srcdir)/'`drivers/video_null.c
2.1996 +
2.1997 +liblxdream_core_a-video_null.obj: drivers/video_null.c
2.1998 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-video_null.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-video_null.Tpo" -c -o liblxdream_core_a-video_null.obj `if test -f 'drivers/video_null.c'; then $(CYGPATH_W) 'drivers/video_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_null.c'; fi`; \
2.1999 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-video_null.Tpo" "$(DEPDIR)/liblxdream_core_a-video_null.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-video_null.Tpo"; exit 1; fi
2.2000 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_null.c' object='liblxdream_core_a-video_null.obj' libtool=no @AMDEPBACKSLASH@
2.2001 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2002 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-video_null.obj `if test -f 'drivers/video_null.c'; then $(CYGPATH_W) 'drivers/video_null.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_null.c'; fi`
2.2003 +
2.2004 +liblxdream_core_a-video_gl.o: drivers/video_gl.c
2.2005 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-video_gl.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo" -c -o liblxdream_core_a-video_gl.o `test -f 'drivers/video_gl.c' || echo '$(srcdir)/'`drivers/video_gl.c; \
2.2006 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo" "$(DEPDIR)/liblxdream_core_a-video_gl.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo"; exit 1; fi
2.2007 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gl.c' object='liblxdream_core_a-video_gl.o' libtool=no @AMDEPBACKSLASH@
2.2008 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2009 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-video_gl.o `test -f 'drivers/video_gl.c' || echo '$(srcdir)/'`drivers/video_gl.c
2.2010 +
2.2011 +liblxdream_core_a-video_gl.obj: drivers/video_gl.c
2.2012 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-video_gl.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo" -c -o liblxdream_core_a-video_gl.obj `if test -f 'drivers/video_gl.c'; then $(CYGPATH_W) 'drivers/video_gl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gl.c'; fi`; \
2.2013 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo" "$(DEPDIR)/liblxdream_core_a-video_gl.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-video_gl.Tpo"; exit 1; fi
2.2014 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gl.c' object='liblxdream_core_a-video_gl.obj' libtool=no @AMDEPBACKSLASH@
2.2015 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2016 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-video_gl.obj `if test -f 'drivers/video_gl.c'; then $(CYGPATH_W) 'drivers/video_gl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gl.c'; fi`
2.2017 +
2.2018 +liblxdream_core_a-gl_fbo.o: drivers/gl_fbo.c
2.2019 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_fbo.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo" -c -o liblxdream_core_a-gl_fbo.o `test -f 'drivers/gl_fbo.c' || echo '$(srcdir)/'`drivers/gl_fbo.c; \
2.2020 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_fbo.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo"; exit 1; fi
2.2021 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_fbo.c' object='liblxdream_core_a-gl_fbo.o' libtool=no @AMDEPBACKSLASH@
2.2022 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2023 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_fbo.o `test -f 'drivers/gl_fbo.c' || echo '$(srcdir)/'`drivers/gl_fbo.c
2.2024 +
2.2025 +liblxdream_core_a-gl_fbo.obj: drivers/gl_fbo.c
2.2026 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_fbo.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo" -c -o liblxdream_core_a-gl_fbo.obj `if test -f 'drivers/gl_fbo.c'; then $(CYGPATH_W) 'drivers/gl_fbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_fbo.c'; fi`; \
2.2027 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_fbo.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_fbo.Tpo"; exit 1; fi
2.2028 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_fbo.c' object='liblxdream_core_a-gl_fbo.obj' libtool=no @AMDEPBACKSLASH@
2.2029 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2030 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_fbo.obj `if test -f 'drivers/gl_fbo.c'; then $(CYGPATH_W) 'drivers/gl_fbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_fbo.c'; fi`
2.2031 +
2.2032 +liblxdream_core_a-gl_vbo.o: drivers/gl_vbo.c
2.2033 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_vbo.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo" -c -o liblxdream_core_a-gl_vbo.o `test -f 'drivers/gl_vbo.c' || echo '$(srcdir)/'`drivers/gl_vbo.c; \
2.2034 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_vbo.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo"; exit 1; fi
2.2035 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_vbo.c' object='liblxdream_core_a-gl_vbo.o' libtool=no @AMDEPBACKSLASH@
2.2036 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2037 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_vbo.o `test -f 'drivers/gl_vbo.c' || echo '$(srcdir)/'`drivers/gl_vbo.c
2.2038 +
2.2039 +liblxdream_core_a-gl_vbo.obj: drivers/gl_vbo.c
2.2040 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_vbo.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo" -c -o liblxdream_core_a-gl_vbo.obj `if test -f 'drivers/gl_vbo.c'; then $(CYGPATH_W) 'drivers/gl_vbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_vbo.c'; fi`; \
2.2041 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_vbo.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_vbo.Tpo"; exit 1; fi
2.2042 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_vbo.c' object='liblxdream_core_a-gl_vbo.obj' libtool=no @AMDEPBACKSLASH@
2.2043 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2044 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_vbo.obj `if test -f 'drivers/gl_vbo.c'; then $(CYGPATH_W) 'drivers/gl_vbo.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_vbo.c'; fi`
2.2045 +
2.2046 +liblxdream_core_a-gl_sl.o: drivers/gl_sl.c
2.2047 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_sl.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo" -c -o liblxdream_core_a-gl_sl.o `test -f 'drivers/gl_sl.c' || echo '$(srcdir)/'`drivers/gl_sl.c; \
2.2048 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_sl.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo"; exit 1; fi
2.2049 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_sl.c' object='liblxdream_core_a-gl_sl.o' libtool=no @AMDEPBACKSLASH@
2.2050 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2051 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_sl.o `test -f 'drivers/gl_sl.c' || echo '$(srcdir)/'`drivers/gl_sl.c
2.2052 +
2.2053 +liblxdream_core_a-gl_sl.obj: drivers/gl_sl.c
2.2054 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-gl_sl.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo" -c -o liblxdream_core_a-gl_sl.obj `if test -f 'drivers/gl_sl.c'; then $(CYGPATH_W) 'drivers/gl_sl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_sl.c'; fi`; \
2.2055 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo" "$(DEPDIR)/liblxdream_core_a-gl_sl.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-gl_sl.Tpo"; exit 1; fi
2.2056 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/gl_sl.c' object='liblxdream_core_a-gl_sl.obj' libtool=no @AMDEPBACKSLASH@
2.2057 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2058 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-gl_sl.obj `if test -f 'drivers/gl_sl.c'; then $(CYGPATH_W) 'drivers/gl_sl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/gl_sl.c'; fi`
2.2059 +
2.2060 +liblxdream_core_a-serial_unix.o: drivers/serial_unix.c
2.2061 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-serial_unix.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo" -c -o liblxdream_core_a-serial_unix.o `test -f 'drivers/serial_unix.c' || echo '$(srcdir)/'`drivers/serial_unix.c; \
2.2062 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo" "$(DEPDIR)/liblxdream_core_a-serial_unix.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo"; exit 1; fi
2.2063 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/serial_unix.c' object='liblxdream_core_a-serial_unix.o' libtool=no @AMDEPBACKSLASH@
2.2064 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2065 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-serial_unix.o `test -f 'drivers/serial_unix.c' || echo '$(srcdir)/'`drivers/serial_unix.c
2.2066 +
2.2067 +liblxdream_core_a-serial_unix.obj: drivers/serial_unix.c
2.2068 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-serial_unix.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo" -c -o liblxdream_core_a-serial_unix.obj `if test -f 'drivers/serial_unix.c'; then $(CYGPATH_W) 'drivers/serial_unix.c'; else $(CYGPATH_W) '$(srcdir)/drivers/serial_unix.c'; fi`; \
2.2069 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo" "$(DEPDIR)/liblxdream_core_a-serial_unix.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-serial_unix.Tpo"; exit 1; fi
2.2070 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/serial_unix.c' object='liblxdream_core_a-serial_unix.obj' libtool=no @AMDEPBACKSLASH@
2.2071 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2072 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-serial_unix.obj `if test -f 'drivers/serial_unix.c'; then $(CYGPATH_W) 'drivers/serial_unix.c'; else $(CYGPATH_W) '$(srcdir)/drivers/serial_unix.c'; fi`
2.2073 +
2.2074 +liblxdream_core_a-cdrom.o: drivers/cdrom/cdrom.c
2.2075 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cdrom.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo" -c -o liblxdream_core_a-cdrom.o `test -f 'drivers/cdrom/cdrom.c' || echo '$(srcdir)/'`drivers/cdrom/cdrom.c; \
2.2076 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo" "$(DEPDIR)/liblxdream_core_a-cdrom.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo"; exit 1; fi
2.2077 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cdrom.c' object='liblxdream_core_a-cdrom.o' libtool=no @AMDEPBACKSLASH@
2.2078 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2079 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cdrom.o `test -f 'drivers/cdrom/cdrom.c' || echo '$(srcdir)/'`drivers/cdrom/cdrom.c
2.2080 +
2.2081 +liblxdream_core_a-cdrom.obj: drivers/cdrom/cdrom.c
2.2082 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cdrom.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo" -c -o liblxdream_core_a-cdrom.obj `if test -f 'drivers/cdrom/cdrom.c'; then $(CYGPATH_W) 'drivers/cdrom/cdrom.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cdrom.c'; fi`; \
2.2083 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo" "$(DEPDIR)/liblxdream_core_a-cdrom.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cdrom.Tpo"; exit 1; fi
2.2084 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cdrom.c' object='liblxdream_core_a-cdrom.obj' libtool=no @AMDEPBACKSLASH@
2.2085 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2086 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cdrom.obj `if test -f 'drivers/cdrom/cdrom.c'; then $(CYGPATH_W) 'drivers/cdrom/cdrom.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cdrom.c'; fi`
2.2087 +
2.2088 +liblxdream_core_a-sector.o: drivers/cdrom/sector.c
2.2089 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sector.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sector.Tpo" -c -o liblxdream_core_a-sector.o `test -f 'drivers/cdrom/sector.c' || echo '$(srcdir)/'`drivers/cdrom/sector.c; \
2.2090 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sector.Tpo" "$(DEPDIR)/liblxdream_core_a-sector.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sector.Tpo"; exit 1; fi
2.2091 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/sector.c' object='liblxdream_core_a-sector.o' libtool=no @AMDEPBACKSLASH@
2.2092 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2093 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sector.o `test -f 'drivers/cdrom/sector.c' || echo '$(srcdir)/'`drivers/cdrom/sector.c
2.2094 +
2.2095 +liblxdream_core_a-sector.obj: drivers/cdrom/sector.c
2.2096 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sector.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sector.Tpo" -c -o liblxdream_core_a-sector.obj `if test -f 'drivers/cdrom/sector.c'; then $(CYGPATH_W) 'drivers/cdrom/sector.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/sector.c'; fi`; \
2.2097 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sector.Tpo" "$(DEPDIR)/liblxdream_core_a-sector.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sector.Tpo"; exit 1; fi
2.2098 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/sector.c' object='liblxdream_core_a-sector.obj' libtool=no @AMDEPBACKSLASH@
2.2099 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2100 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sector.obj `if test -f 'drivers/cdrom/sector.c'; then $(CYGPATH_W) 'drivers/cdrom/sector.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/sector.c'; fi`
2.2101 +
2.2102 +liblxdream_core_a-cd_nrg.o: drivers/cdrom/cd_nrg.c
2.2103 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_nrg.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo" -c -o liblxdream_core_a-cd_nrg.o `test -f 'drivers/cdrom/cd_nrg.c' || echo '$(srcdir)/'`drivers/cdrom/cd_nrg.c; \
2.2104 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_nrg.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo"; exit 1; fi
2.2105 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_nrg.c' object='liblxdream_core_a-cd_nrg.o' libtool=no @AMDEPBACKSLASH@
2.2106 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2107 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_nrg.o `test -f 'drivers/cdrom/cd_nrg.c' || echo '$(srcdir)/'`drivers/cdrom/cd_nrg.c
2.2108 +
2.2109 +liblxdream_core_a-cd_nrg.obj: drivers/cdrom/cd_nrg.c
2.2110 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_nrg.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo" -c -o liblxdream_core_a-cd_nrg.obj `if test -f 'drivers/cdrom/cd_nrg.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_nrg.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_nrg.c'; fi`; \
2.2111 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_nrg.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_nrg.Tpo"; exit 1; fi
2.2112 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_nrg.c' object='liblxdream_core_a-cd_nrg.obj' libtool=no @AMDEPBACKSLASH@
2.2113 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2114 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_nrg.obj `if test -f 'drivers/cdrom/cd_nrg.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_nrg.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_nrg.c'; fi`
2.2115 +
2.2116 +liblxdream_core_a-cd_cdi.o: drivers/cdrom/cd_cdi.c
2.2117 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_cdi.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo" -c -o liblxdream_core_a-cd_cdi.o `test -f 'drivers/cdrom/cd_cdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_cdi.c; \
2.2118 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_cdi.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo"; exit 1; fi
2.2119 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_cdi.c' object='liblxdream_core_a-cd_cdi.o' libtool=no @AMDEPBACKSLASH@
2.2120 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2121 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_cdi.o `test -f 'drivers/cdrom/cd_cdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_cdi.c
2.2122 +
2.2123 +liblxdream_core_a-cd_cdi.obj: drivers/cdrom/cd_cdi.c
2.2124 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_cdi.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo" -c -o liblxdream_core_a-cd_cdi.obj `if test -f 'drivers/cdrom/cd_cdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_cdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_cdi.c'; fi`; \
2.2125 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_cdi.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_cdi.Tpo"; exit 1; fi
2.2126 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_cdi.c' object='liblxdream_core_a-cd_cdi.obj' libtool=no @AMDEPBACKSLASH@
2.2127 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2128 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_cdi.obj `if test -f 'drivers/cdrom/cd_cdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_cdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_cdi.c'; fi`
2.2129 +
2.2130 +liblxdream_core_a-cd_gdi.o: drivers/cdrom/cd_gdi.c
2.2131 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_gdi.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo" -c -o liblxdream_core_a-cd_gdi.o `test -f 'drivers/cdrom/cd_gdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_gdi.c; \
2.2132 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_gdi.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo"; exit 1; fi
2.2133 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_gdi.c' object='liblxdream_core_a-cd_gdi.o' libtool=no @AMDEPBACKSLASH@
2.2134 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2135 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_gdi.o `test -f 'drivers/cdrom/cd_gdi.c' || echo '$(srcdir)/'`drivers/cdrom/cd_gdi.c
2.2136 +
2.2137 +liblxdream_core_a-cd_gdi.obj: drivers/cdrom/cd_gdi.c
2.2138 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_gdi.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo" -c -o liblxdream_core_a-cd_gdi.obj `if test -f 'drivers/cdrom/cd_gdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_gdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_gdi.c'; fi`; \
2.2139 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_gdi.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_gdi.Tpo"; exit 1; fi
2.2140 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_gdi.c' object='liblxdream_core_a-cd_gdi.obj' libtool=no @AMDEPBACKSLASH@
2.2141 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2142 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_gdi.obj `if test -f 'drivers/cdrom/cd_gdi.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_gdi.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_gdi.c'; fi`
2.2143 +
2.2144 +liblxdream_core_a-edc_ecc.o: drivers/cdrom/edc_ecc.c
2.2145 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-edc_ecc.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo" -c -o liblxdream_core_a-edc_ecc.o `test -f 'drivers/cdrom/edc_ecc.c' || echo '$(srcdir)/'`drivers/cdrom/edc_ecc.c; \
2.2146 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo" "$(DEPDIR)/liblxdream_core_a-edc_ecc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo"; exit 1; fi
2.2147 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/edc_ecc.c' object='liblxdream_core_a-edc_ecc.o' libtool=no @AMDEPBACKSLASH@
2.2148 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2149 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-edc_ecc.o `test -f 'drivers/cdrom/edc_ecc.c' || echo '$(srcdir)/'`drivers/cdrom/edc_ecc.c
2.2150 +
2.2151 +liblxdream_core_a-edc_ecc.obj: drivers/cdrom/edc_ecc.c
2.2152 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-edc_ecc.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo" -c -o liblxdream_core_a-edc_ecc.obj `if test -f 'drivers/cdrom/edc_ecc.c'; then $(CYGPATH_W) 'drivers/cdrom/edc_ecc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/edc_ecc.c'; fi`; \
2.2153 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo" "$(DEPDIR)/liblxdream_core_a-edc_ecc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-edc_ecc.Tpo"; exit 1; fi
2.2154 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/edc_ecc.c' object='liblxdream_core_a-edc_ecc.obj' libtool=no @AMDEPBACKSLASH@
2.2155 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2156 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-edc_ecc.obj `if test -f 'drivers/cdrom/edc_ecc.c'; then $(CYGPATH_W) 'drivers/cdrom/edc_ecc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/edc_ecc.c'; fi`
2.2157 +
2.2158 +liblxdream_core_a-drive.o: drivers/cdrom/drive.c
2.2159 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-drive.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-drive.Tpo" -c -o liblxdream_core_a-drive.o `test -f 'drivers/cdrom/drive.c' || echo '$(srcdir)/'`drivers/cdrom/drive.c; \
2.2160 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-drive.Tpo" "$(DEPDIR)/liblxdream_core_a-drive.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-drive.Tpo"; exit 1; fi
2.2161 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/drive.c' object='liblxdream_core_a-drive.o' libtool=no @AMDEPBACKSLASH@
2.2162 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2163 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-drive.o `test -f 'drivers/cdrom/drive.c' || echo '$(srcdir)/'`drivers/cdrom/drive.c
2.2164 +
2.2165 +liblxdream_core_a-drive.obj: drivers/cdrom/drive.c
2.2166 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-drive.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-drive.Tpo" -c -o liblxdream_core_a-drive.obj `if test -f 'drivers/cdrom/drive.c'; then $(CYGPATH_W) 'drivers/cdrom/drive.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/drive.c'; fi`; \
2.2167 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-drive.Tpo" "$(DEPDIR)/liblxdream_core_a-drive.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-drive.Tpo"; exit 1; fi
2.2168 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/drive.c' object='liblxdream_core_a-drive.obj' libtool=no @AMDEPBACKSLASH@
2.2169 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2170 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-drive.obj `if test -f 'drivers/cdrom/drive.c'; then $(CYGPATH_W) 'drivers/cdrom/drive.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/drive.c'; fi`
2.2171 +
2.2172 +liblxdream_core_a-cd_mmc.o: drivers/cdrom/cd_mmc.c
2.2173 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_mmc.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo" -c -o liblxdream_core_a-cd_mmc.o `test -f 'drivers/cdrom/cd_mmc.c' || echo '$(srcdir)/'`drivers/cdrom/cd_mmc.c; \
2.2174 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_mmc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo"; exit 1; fi
2.2175 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_mmc.c' object='liblxdream_core_a-cd_mmc.o' libtool=no @AMDEPBACKSLASH@
2.2176 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2177 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_mmc.o `test -f 'drivers/cdrom/cd_mmc.c' || echo '$(srcdir)/'`drivers/cdrom/cd_mmc.c
2.2178 +
2.2179 +liblxdream_core_a-cd_mmc.obj: drivers/cdrom/cd_mmc.c
2.2180 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-cd_mmc.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo" -c -o liblxdream_core_a-cd_mmc.obj `if test -f 'drivers/cdrom/cd_mmc.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_mmc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_mmc.c'; fi`; \
2.2181 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo" "$(DEPDIR)/liblxdream_core_a-cd_mmc.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-cd_mmc.Tpo"; exit 1; fi
2.2182 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_mmc.c' object='liblxdream_core_a-cd_mmc.obj' libtool=no @AMDEPBACKSLASH@
2.2183 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2184 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-cd_mmc.obj `if test -f 'drivers/cdrom/cd_mmc.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_mmc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_mmc.c'; fi`
2.2185 +
2.2186 +liblxdream_core_a-isofs.o: drivers/cdrom/isofs.c
2.2187 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-isofs.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-isofs.Tpo" -c -o liblxdream_core_a-isofs.o `test -f 'drivers/cdrom/isofs.c' || echo '$(srcdir)/'`drivers/cdrom/isofs.c; \
2.2188 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-isofs.Tpo" "$(DEPDIR)/liblxdream_core_a-isofs.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-isofs.Tpo"; exit 1; fi
2.2189 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isofs.c' object='liblxdream_core_a-isofs.o' libtool=no @AMDEPBACKSLASH@
2.2190 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2191 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-isofs.o `test -f 'drivers/cdrom/isofs.c' || echo '$(srcdir)/'`drivers/cdrom/isofs.c
2.2192 +
2.2193 +liblxdream_core_a-isofs.obj: drivers/cdrom/isofs.c
2.2194 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-isofs.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-isofs.Tpo" -c -o liblxdream_core_a-isofs.obj `if test -f 'drivers/cdrom/isofs.c'; then $(CYGPATH_W) 'drivers/cdrom/isofs.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isofs.c'; fi`; \
2.2195 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-isofs.Tpo" "$(DEPDIR)/liblxdream_core_a-isofs.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-isofs.Tpo"; exit 1; fi
2.2196 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isofs.c' object='liblxdream_core_a-isofs.obj' libtool=no @AMDEPBACKSLASH@
2.2197 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2198 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-isofs.obj `if test -f 'drivers/cdrom/isofs.c'; then $(CYGPATH_W) 'drivers/cdrom/isofs.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isofs.c'; fi`
2.2199 +
2.2200 +liblxdream_core_a-isomem.o: drivers/cdrom/isomem.c
2.2201 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-isomem.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-isomem.Tpo" -c -o liblxdream_core_a-isomem.o `test -f 'drivers/cdrom/isomem.c' || echo '$(srcdir)/'`drivers/cdrom/isomem.c; \
2.2202 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-isomem.Tpo" "$(DEPDIR)/liblxdream_core_a-isomem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-isomem.Tpo"; exit 1; fi
2.2203 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isomem.c' object='liblxdream_core_a-isomem.o' libtool=no @AMDEPBACKSLASH@
2.2204 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2205 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-isomem.o `test -f 'drivers/cdrom/isomem.c' || echo '$(srcdir)/'`drivers/cdrom/isomem.c
2.2206 +
2.2207 +liblxdream_core_a-isomem.obj: drivers/cdrom/isomem.c
2.2208 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-isomem.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-isomem.Tpo" -c -o liblxdream_core_a-isomem.obj `if test -f 'drivers/cdrom/isomem.c'; then $(CYGPATH_W) 'drivers/cdrom/isomem.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isomem.c'; fi`; \
2.2209 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-isomem.Tpo" "$(DEPDIR)/liblxdream_core_a-isomem.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-isomem.Tpo"; exit 1; fi
2.2210 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/isomem.c' object='liblxdream_core_a-isomem.obj' libtool=no @AMDEPBACKSLASH@
2.2211 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2212 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-isomem.obj `if test -f 'drivers/cdrom/isomem.c'; then $(CYGPATH_W) 'drivers/cdrom/isomem.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/isomem.c'; fi`
2.2213 +
2.2214 +liblxdream_core_a-hotkeys.o: hotkeys.c
2.2215 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-hotkeys.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo" -c -o liblxdream_core_a-hotkeys.o `test -f 'hotkeys.c' || echo '$(srcdir)/'`hotkeys.c; \
2.2216 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo" "$(DEPDIR)/liblxdream_core_a-hotkeys.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo"; exit 1; fi
2.2217 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hotkeys.c' object='liblxdream_core_a-hotkeys.o' libtool=no @AMDEPBACKSLASH@
2.2218 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2219 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-hotkeys.o `test -f 'hotkeys.c' || echo '$(srcdir)/'`hotkeys.c
2.2220 +
2.2221 +liblxdream_core_a-hotkeys.obj: hotkeys.c
2.2222 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-hotkeys.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo" -c -o liblxdream_core_a-hotkeys.obj `if test -f 'hotkeys.c'; then $(CYGPATH_W) 'hotkeys.c'; else $(CYGPATH_W) '$(srcdir)/hotkeys.c'; fi`; \
2.2223 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo" "$(DEPDIR)/liblxdream_core_a-hotkeys.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-hotkeys.Tpo"; exit 1; fi
2.2224 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hotkeys.c' object='liblxdream_core_a-hotkeys.obj' libtool=no @AMDEPBACKSLASH@
2.2225 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2226 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-hotkeys.obj `if test -f 'hotkeys.c'; then $(CYGPATH_W) 'hotkeys.c'; else $(CYGPATH_W) '$(srcdir)/hotkeys.c'; fi`
2.2227 +
2.2228 +liblxdream_core_a-sh4x86.o: sh4/sh4x86.c
2.2229 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4x86.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo" -c -o liblxdream_core_a-sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c; \
2.2230 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4x86.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo"; exit 1; fi
2.2231 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='liblxdream_core_a-sh4x86.o' libtool=no @AMDEPBACKSLASH@
2.2232 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2233 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c
2.2234 +
2.2235 +liblxdream_core_a-sh4x86.obj: sh4/sh4x86.c
2.2236 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4x86.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo" -c -o liblxdream_core_a-sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`; \
2.2237 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4x86.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4x86.Tpo"; exit 1; fi
2.2238 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='liblxdream_core_a-sh4x86.obj' libtool=no @AMDEPBACKSLASH@
2.2239 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2240 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`
2.2241 +
2.2242 +liblxdream_core_a-sh4trans.o: sh4/sh4trans.c
2.2243 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4trans.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo" -c -o liblxdream_core_a-sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c; \
2.2244 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4trans.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo"; exit 1; fi
2.2245 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='liblxdream_core_a-sh4trans.o' libtool=no @AMDEPBACKSLASH@
2.2246 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2247 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c
2.2248 +
2.2249 +liblxdream_core_a-sh4trans.obj: sh4/sh4trans.c
2.2250 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-sh4trans.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo" -c -o liblxdream_core_a-sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`; \
2.2251 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo" "$(DEPDIR)/liblxdream_core_a-sh4trans.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-sh4trans.Tpo"; exit 1; fi
2.2252 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='liblxdream_core_a-sh4trans.obj' libtool=no @AMDEPBACKSLASH@
2.2253 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2254 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`
2.2255 +
2.2256 +liblxdream_core_a-mmux86.o: sh4/mmux86.c
2.2257 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mmux86.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo" -c -o liblxdream_core_a-mmux86.o `test -f 'sh4/mmux86.c' || echo '$(srcdir)/'`sh4/mmux86.c; \
2.2258 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo" "$(DEPDIR)/liblxdream_core_a-mmux86.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo"; exit 1; fi
2.2259 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmux86.c' object='liblxdream_core_a-mmux86.o' libtool=no @AMDEPBACKSLASH@
2.2260 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2261 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mmux86.o `test -f 'sh4/mmux86.c' || echo '$(srcdir)/'`sh4/mmux86.c
2.2262 +
2.2263 +liblxdream_core_a-mmux86.obj: sh4/mmux86.c
2.2264 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-mmux86.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo" -c -o liblxdream_core_a-mmux86.obj `if test -f 'sh4/mmux86.c'; then $(CYGPATH_W) 'sh4/mmux86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmux86.c'; fi`; \
2.2265 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo" "$(DEPDIR)/liblxdream_core_a-mmux86.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-mmux86.Tpo"; exit 1; fi
2.2266 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/mmux86.c' object='liblxdream_core_a-mmux86.obj' libtool=no @AMDEPBACKSLASH@
2.2267 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2268 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-mmux86.obj `if test -f 'sh4/mmux86.c'; then $(CYGPATH_W) 'sh4/mmux86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/mmux86.c'; fi`
2.2269 +
2.2270 +liblxdream_core_a-shadow.o: sh4/shadow.c
2.2271 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-shadow.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-shadow.Tpo" -c -o liblxdream_core_a-shadow.o `test -f 'sh4/shadow.c' || echo '$(srcdir)/'`sh4/shadow.c; \
2.2272 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-shadow.Tpo" "$(DEPDIR)/liblxdream_core_a-shadow.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-shadow.Tpo"; exit 1; fi
2.2273 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/shadow.c' object='liblxdream_core_a-shadow.o' libtool=no @AMDEPBACKSLASH@
2.2274 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2275 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-shadow.o `test -f 'sh4/shadow.c' || echo '$(srcdir)/'`sh4/shadow.c
2.2276 +
2.2277 +liblxdream_core_a-shadow.obj: sh4/shadow.c
2.2278 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-shadow.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-shadow.Tpo" -c -o liblxdream_core_a-shadow.obj `if test -f 'sh4/shadow.c'; then $(CYGPATH_W) 'sh4/shadow.c'; else $(CYGPATH_W) '$(srcdir)/sh4/shadow.c'; fi`; \
2.2279 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-shadow.Tpo" "$(DEPDIR)/liblxdream_core_a-shadow.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-shadow.Tpo"; exit 1; fi
2.2280 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/shadow.c' object='liblxdream_core_a-shadow.obj' libtool=no @AMDEPBACKSLASH@
2.2281 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2282 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-shadow.obj `if test -f 'sh4/shadow.c'; then $(CYGPATH_W) 'sh4/shadow.c'; else $(CYGPATH_W) '$(srcdir)/sh4/shadow.c'; fi`
2.2283 +
2.2284 +liblxdream_core_a-x86dasm.o: x86dasm/x86dasm.c
2.2285 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-x86dasm.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo" -c -o liblxdream_core_a-x86dasm.o `test -f 'x86dasm/x86dasm.c' || echo '$(srcdir)/'`x86dasm/x86dasm.c; \
2.2286 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo" "$(DEPDIR)/liblxdream_core_a-x86dasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo"; exit 1; fi
2.2287 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/x86dasm.c' object='liblxdream_core_a-x86dasm.o' libtool=no @AMDEPBACKSLASH@
2.2288 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2289 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-x86dasm.o `test -f 'x86dasm/x86dasm.c' || echo '$(srcdir)/'`x86dasm/x86dasm.c
2.2290 +
2.2291 +liblxdream_core_a-x86dasm.obj: x86dasm/x86dasm.c
2.2292 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-x86dasm.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo" -c -o liblxdream_core_a-x86dasm.obj `if test -f 'x86dasm/x86dasm.c'; then $(CYGPATH_W) 'x86dasm/x86dasm.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/x86dasm.c'; fi`; \
2.2293 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo" "$(DEPDIR)/liblxdream_core_a-x86dasm.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-x86dasm.Tpo"; exit 1; fi
2.2294 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/x86dasm.c' object='liblxdream_core_a-x86dasm.obj' libtool=no @AMDEPBACKSLASH@
2.2295 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2296 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-x86dasm.obj `if test -f 'x86dasm/x86dasm.c'; then $(CYGPATH_W) 'x86dasm/x86dasm.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/x86dasm.c'; fi`
2.2297 +
2.2298 +liblxdream_core_a-i386-dis.o: x86dasm/i386-dis.c
2.2299 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-i386-dis.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo" -c -o liblxdream_core_a-i386-dis.o `test -f 'x86dasm/i386-dis.c' || echo '$(srcdir)/'`x86dasm/i386-dis.c; \
2.2300 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo" "$(DEPDIR)/liblxdream_core_a-i386-dis.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo"; exit 1; fi
2.2301 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/i386-dis.c' object='liblxdream_core_a-i386-dis.o' libtool=no @AMDEPBACKSLASH@
2.2302 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2303 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-i386-dis.o `test -f 'x86dasm/i386-dis.c' || echo '$(srcdir)/'`x86dasm/i386-dis.c
2.2304 +
2.2305 +liblxdream_core_a-i386-dis.obj: x86dasm/i386-dis.c
2.2306 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-i386-dis.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo" -c -o liblxdream_core_a-i386-dis.obj `if test -f 'x86dasm/i386-dis.c'; then $(CYGPATH_W) 'x86dasm/i386-dis.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/i386-dis.c'; fi`; \
2.2307 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo" "$(DEPDIR)/liblxdream_core_a-i386-dis.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-i386-dis.Tpo"; exit 1; fi
2.2308 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/i386-dis.c' object='liblxdream_core_a-i386-dis.obj' libtool=no @AMDEPBACKSLASH@
2.2309 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2310 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-i386-dis.obj `if test -f 'x86dasm/i386-dis.c'; then $(CYGPATH_W) 'x86dasm/i386-dis.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/i386-dis.c'; fi`
2.2311 +
2.2312 +liblxdream_core_a-dis-init.o: x86dasm/dis-init.c
2.2313 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dis-init.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo" -c -o liblxdream_core_a-dis-init.o `test -f 'x86dasm/dis-init.c' || echo '$(srcdir)/'`x86dasm/dis-init.c; \
2.2314 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo" "$(DEPDIR)/liblxdream_core_a-dis-init.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo"; exit 1; fi
2.2315 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/dis-init.c' object='liblxdream_core_a-dis-init.o' libtool=no @AMDEPBACKSLASH@
2.2316 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2317 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dis-init.o `test -f 'x86dasm/dis-init.c' || echo '$(srcdir)/'`x86dasm/dis-init.c
2.2318 +
2.2319 +liblxdream_core_a-dis-init.obj: x86dasm/dis-init.c
2.2320 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dis-init.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo" -c -o liblxdream_core_a-dis-init.obj `if test -f 'x86dasm/dis-init.c'; then $(CYGPATH_W) 'x86dasm/dis-init.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/dis-init.c'; fi`; \
2.2321 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo" "$(DEPDIR)/liblxdream_core_a-dis-init.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dis-init.Tpo"; exit 1; fi
2.2322 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/dis-init.c' object='liblxdream_core_a-dis-init.obj' libtool=no @AMDEPBACKSLASH@
2.2323 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2324 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dis-init.obj `if test -f 'x86dasm/dis-init.c'; then $(CYGPATH_W) 'x86dasm/dis-init.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/dis-init.c'; fi`
2.2325 +
2.2326 +liblxdream_core_a-dis-buf.o: x86dasm/dis-buf.c
2.2327 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dis-buf.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo" -c -o liblxdream_core_a-dis-buf.o `test -f 'x86dasm/dis-buf.c' || echo '$(srcdir)/'`x86dasm/dis-buf.c; \
2.2328 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo" "$(DEPDIR)/liblxdream_core_a-dis-buf.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo"; exit 1; fi
2.2329 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/dis-buf.c' object='liblxdream_core_a-dis-buf.o' libtool=no @AMDEPBACKSLASH@
2.2330 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2331 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dis-buf.o `test -f 'x86dasm/dis-buf.c' || echo '$(srcdir)/'`x86dasm/dis-buf.c
2.2332 +
2.2333 +liblxdream_core_a-dis-buf.obj: x86dasm/dis-buf.c
2.2334 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-dis-buf.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo" -c -o liblxdream_core_a-dis-buf.obj `if test -f 'x86dasm/dis-buf.c'; then $(CYGPATH_W) 'x86dasm/dis-buf.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/dis-buf.c'; fi`; \
2.2335 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo" "$(DEPDIR)/liblxdream_core_a-dis-buf.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-dis-buf.Tpo"; exit 1; fi
2.2336 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x86dasm/dis-buf.c' object='liblxdream_core_a-dis-buf.obj' libtool=no @AMDEPBACKSLASH@
2.2337 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2338 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-dis-buf.obj `if test -f 'x86dasm/dis-buf.c'; then $(CYGPATH_W) 'x86dasm/dis-buf.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/dis-buf.c'; fi`
2.2339 +
2.2340 +liblxdream_core_a-paths_unix.o: paths_unix.c
2.2341 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-paths_unix.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo" -c -o liblxdream_core_a-paths_unix.o `test -f 'paths_unix.c' || echo '$(srcdir)/'`paths_unix.c; \
2.2342 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo" "$(DEPDIR)/liblxdream_core_a-paths_unix.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo"; exit 1; fi
2.2343 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='paths_unix.c' object='liblxdream_core_a-paths_unix.o' libtool=no @AMDEPBACKSLASH@
2.2344 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2345 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-paths_unix.o `test -f 'paths_unix.c' || echo '$(srcdir)/'`paths_unix.c
2.2346 +
2.2347 +liblxdream_core_a-paths_unix.obj: paths_unix.c
2.2348 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-paths_unix.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo" -c -o liblxdream_core_a-paths_unix.obj `if test -f 'paths_unix.c'; then $(CYGPATH_W) 'paths_unix.c'; else $(CYGPATH_W) '$(srcdir)/paths_unix.c'; fi`; \
2.2349 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo" "$(DEPDIR)/liblxdream_core_a-paths_unix.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-paths_unix.Tpo"; exit 1; fi
2.2350 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='paths_unix.c' object='liblxdream_core_a-paths_unix.obj' libtool=no @AMDEPBACKSLASH@
2.2351 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2352 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-paths_unix.obj `if test -f 'paths_unix.c'; then $(CYGPATH_W) 'paths_unix.c'; else $(CYGPATH_W) '$(srcdir)/paths_unix.c'; fi`
2.2353 +
2.2354 +liblxdream_core_a-io_glib.o: drivers/io_glib.c
2.2355 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-io_glib.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo" -c -o liblxdream_core_a-io_glib.o `test -f 'drivers/io_glib.c' || echo '$(srcdir)/'`drivers/io_glib.c; \
2.2356 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo" "$(DEPDIR)/liblxdream_core_a-io_glib.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo"; exit 1; fi
2.2357 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/io_glib.c' object='liblxdream_core_a-io_glib.o' libtool=no @AMDEPBACKSLASH@
2.2358 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2359 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-io_glib.o `test -f 'drivers/io_glib.c' || echo '$(srcdir)/'`drivers/io_glib.c
2.2360 +
2.2361 +liblxdream_core_a-io_glib.obj: drivers/io_glib.c
2.2362 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT liblxdream_core_a-io_glib.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo" -c -o liblxdream_core_a-io_glib.obj `if test -f 'drivers/io_glib.c'; then $(CYGPATH_W) 'drivers/io_glib.c'; else $(CYGPATH_W) '$(srcdir)/drivers/io_glib.c'; fi`; \
2.2363 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo" "$(DEPDIR)/liblxdream_core_a-io_glib.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-io_glib.Tpo"; exit 1; fi
2.2364 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/io_glib.c' object='liblxdream_core_a-io_glib.obj' libtool=no @AMDEPBACKSLASH@
2.2365 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2366 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o liblxdream_core_a-io_glib.obj `if test -f 'drivers/io_glib.c'; then $(CYGPATH_W) 'drivers/io_glib.c'; else $(CYGPATH_W) '$(srcdir)/drivers/io_glib.c'; fi`
2.2367 +
2.2368 +cd_none.o: drivers/cdrom/cd_none.c
2.2369 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_none.o -MD -MP -MF "$(DEPDIR)/cd_none.Tpo" -c -o cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c; \
2.2370 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_none.Tpo" "$(DEPDIR)/cd_none.Po"; else rm -f "$(DEPDIR)/cd_none.Tpo"; exit 1; fi
2.2371 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='cd_none.o' libtool=no @AMDEPBACKSLASH@
2.2372 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2373 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c
2.2374 +
2.2375 +cd_none.obj: drivers/cdrom/cd_none.c
2.2376 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_none.obj -MD -MP -MF "$(DEPDIR)/cd_none.Tpo" -c -o cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`; \
2.2377 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_none.Tpo" "$(DEPDIR)/cd_none.Po"; else rm -f "$(DEPDIR)/cd_none.Tpo"; exit 1; fi
2.2378 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='cd_none.obj' libtool=no @AMDEPBACKSLASH@
2.2379 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2380 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`
2.2381 +
2.2382 +video_egl.o: drivers/video_egl.c
2.2383 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_egl.o -MD -MP -MF "$(DEPDIR)/video_egl.Tpo" -c -o video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c; \
2.2384 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_egl.Tpo" "$(DEPDIR)/video_egl.Po"; else rm -f "$(DEPDIR)/video_egl.Tpo"; exit 1; fi
2.2385 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='video_egl.o' libtool=no @AMDEPBACKSLASH@
2.2386 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2387 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c
2.2388 +
2.2389 +video_egl.obj: drivers/video_egl.c
2.2390 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_egl.obj -MD -MP -MF "$(DEPDIR)/video_egl.Tpo" -c -o video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`; \
2.2391 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_egl.Tpo" "$(DEPDIR)/video_egl.Po"; else rm -f "$(DEPDIR)/video_egl.Tpo"; exit 1; fi
2.2392 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='video_egl.obj' libtool=no @AMDEPBACKSLASH@
2.2393 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2394 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`
2.2395 +
2.2396 +lxdream-main.o: main.c
2.2397 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-main.o -MD -MP -MF "$(DEPDIR)/lxdream-main.Tpo" -c -o lxdream-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \
2.2398 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-main.Tpo" "$(DEPDIR)/lxdream-main.Po"; else rm -f "$(DEPDIR)/lxdream-main.Tpo"; exit 1; fi
2.2399 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lxdream-main.o' libtool=no @AMDEPBACKSLASH@
2.2400 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2401 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
2.2402 +
2.2403 +lxdream-main.obj: main.c
2.2404 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-main.obj -MD -MP -MF "$(DEPDIR)/lxdream-main.Tpo" -c -o lxdream-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \
2.2405 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-main.Tpo" "$(DEPDIR)/lxdream-main.Po"; else rm -f "$(DEPDIR)/lxdream-main.Tpo"; exit 1; fi
2.2406 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lxdream-main.obj' libtool=no @AMDEPBACKSLASH@
2.2407 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2408 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
2.2409 +
2.2410 +lxdream-plugin.o: plugin.c
2.2411 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-plugin.o -MD -MP -MF "$(DEPDIR)/lxdream-plugin.Tpo" -c -o lxdream-plugin.o `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c; \
2.2412 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-plugin.Tpo" "$(DEPDIR)/lxdream-plugin.Po"; else rm -f "$(DEPDIR)/lxdream-plugin.Tpo"; exit 1; fi
2.2413 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='plugin.c' object='lxdream-plugin.o' libtool=no @AMDEPBACKSLASH@
2.2414 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2415 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-plugin.o `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c
2.2416 +
2.2417 +lxdream-plugin.obj: plugin.c
2.2418 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-plugin.obj -MD -MP -MF "$(DEPDIR)/lxdream-plugin.Tpo" -c -o lxdream-plugin.obj `if test -f 'plugin.c'; then $(CYGPATH_W) 'plugin.c'; else $(CYGPATH_W) '$(srcdir)/plugin.c'; fi`; \
2.2419 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-plugin.Tpo" "$(DEPDIR)/lxdream-plugin.Po"; else rm -f "$(DEPDIR)/lxdream-plugin.Tpo"; exit 1; fi
2.2420 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='plugin.c' object='lxdream-plugin.obj' libtool=no @AMDEPBACKSLASH@
2.2421 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2422 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-plugin.obj `if test -f 'plugin.c'; then $(CYGPATH_W) 'plugin.c'; else $(CYGPATH_W) '$(srcdir)/plugin.c'; fi`
2.2423 +
2.2424 +lxdream-gtkui.o: gtkui/gtkui.c
2.2425 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtkui.o -MD -MP -MF "$(DEPDIR)/lxdream-gtkui.Tpo" -c -o lxdream-gtkui.o `test -f 'gtkui/gtkui.c' || echo '$(srcdir)/'`gtkui/gtkui.c; \
2.2426 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtkui.Tpo" "$(DEPDIR)/lxdream-gtkui.Po"; else rm -f "$(DEPDIR)/lxdream-gtkui.Tpo"; exit 1; fi
2.2427 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkui.c' object='lxdream-gtkui.o' libtool=no @AMDEPBACKSLASH@
2.2428 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2429 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtkui.o `test -f 'gtkui/gtkui.c' || echo '$(srcdir)/'`gtkui/gtkui.c
2.2430 +
2.2431 +lxdream-gtkui.obj: gtkui/gtkui.c
2.2432 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtkui.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtkui.Tpo" -c -o lxdream-gtkui.obj `if test -f 'gtkui/gtkui.c'; then $(CYGPATH_W) 'gtkui/gtkui.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkui.c'; fi`; \
2.2433 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtkui.Tpo" "$(DEPDIR)/lxdream-gtkui.Po"; else rm -f "$(DEPDIR)/lxdream-gtkui.Tpo"; exit 1; fi
2.2434 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkui.c' object='lxdream-gtkui.obj' libtool=no @AMDEPBACKSLASH@
2.2435 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2436 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtkui.obj `if test -f 'gtkui/gtkui.c'; then $(CYGPATH_W) 'gtkui/gtkui.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkui.c'; fi`
2.2437 +
2.2438 +lxdream-gtk_win.o: gtkui/gtk_win.c
2.2439 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_win.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_win.Tpo" -c -o lxdream-gtk_win.o `test -f 'gtkui/gtk_win.c' || echo '$(srcdir)/'`gtkui/gtk_win.c; \
2.2440 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_win.Tpo" "$(DEPDIR)/lxdream-gtk_win.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_win.Tpo"; exit 1; fi
2.2441 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_win.c' object='lxdream-gtk_win.o' libtool=no @AMDEPBACKSLASH@
2.2442 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2443 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_win.o `test -f 'gtkui/gtk_win.c' || echo '$(srcdir)/'`gtkui/gtk_win.c
2.2444 +
2.2445 +lxdream-gtk_win.obj: gtkui/gtk_win.c
2.2446 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_win.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_win.Tpo" -c -o lxdream-gtk_win.obj `if test -f 'gtkui/gtk_win.c'; then $(CYGPATH_W) 'gtkui/gtk_win.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_win.c'; fi`; \
2.2447 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_win.Tpo" "$(DEPDIR)/lxdream-gtk_win.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_win.Tpo"; exit 1; fi
2.2448 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_win.c' object='lxdream-gtk_win.obj' libtool=no @AMDEPBACKSLASH@
2.2449 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2450 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_win.obj `if test -f 'gtkui/gtk_win.c'; then $(CYGPATH_W) 'gtkui/gtk_win.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_win.c'; fi`
2.2451 +
2.2452 +lxdream-gtkcb.o: gtkui/gtkcb.c
2.2453 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtkcb.o -MD -MP -MF "$(DEPDIR)/lxdream-gtkcb.Tpo" -c -o lxdream-gtkcb.o `test -f 'gtkui/gtkcb.c' || echo '$(srcdir)/'`gtkui/gtkcb.c; \
2.2454 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtkcb.Tpo" "$(DEPDIR)/lxdream-gtkcb.Po"; else rm -f "$(DEPDIR)/lxdream-gtkcb.Tpo"; exit 1; fi
2.2455 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkcb.c' object='lxdream-gtkcb.o' libtool=no @AMDEPBACKSLASH@
2.2456 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2457 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtkcb.o `test -f 'gtkui/gtkcb.c' || echo '$(srcdir)/'`gtkui/gtkcb.c
2.2458 +
2.2459 +lxdream-gtkcb.obj: gtkui/gtkcb.c
2.2460 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtkcb.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtkcb.Tpo" -c -o lxdream-gtkcb.obj `if test -f 'gtkui/gtkcb.c'; then $(CYGPATH_W) 'gtkui/gtkcb.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkcb.c'; fi`; \
2.2461 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtkcb.Tpo" "$(DEPDIR)/lxdream-gtkcb.Po"; else rm -f "$(DEPDIR)/lxdream-gtkcb.Tpo"; exit 1; fi
2.2462 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkcb.c' object='lxdream-gtkcb.obj' libtool=no @AMDEPBACKSLASH@
2.2463 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2464 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtkcb.obj `if test -f 'gtkui/gtkcb.c'; then $(CYGPATH_W) 'gtkui/gtkcb.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkcb.c'; fi`
2.2465 +
2.2466 +lxdream-gtk_cfg.o: gtkui/gtk_cfg.c
2.2467 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_cfg.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_cfg.Tpo" -c -o lxdream-gtk_cfg.o `test -f 'gtkui/gtk_cfg.c' || echo '$(srcdir)/'`gtkui/gtk_cfg.c; \
2.2468 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_cfg.Tpo" "$(DEPDIR)/lxdream-gtk_cfg.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_cfg.Tpo"; exit 1; fi
2.2469 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_cfg.c' object='lxdream-gtk_cfg.o' libtool=no @AMDEPBACKSLASH@
2.2470 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2471 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_cfg.o `test -f 'gtkui/gtk_cfg.c' || echo '$(srcdir)/'`gtkui/gtk_cfg.c
2.2472 +
2.2473 +lxdream-gtk_cfg.obj: gtkui/gtk_cfg.c
2.2474 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_cfg.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_cfg.Tpo" -c -o lxdream-gtk_cfg.obj `if test -f 'gtkui/gtk_cfg.c'; then $(CYGPATH_W) 'gtkui/gtk_cfg.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_cfg.c'; fi`; \
2.2475 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_cfg.Tpo" "$(DEPDIR)/lxdream-gtk_cfg.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_cfg.Tpo"; exit 1; fi
2.2476 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_cfg.c' object='lxdream-gtk_cfg.obj' libtool=no @AMDEPBACKSLASH@
2.2477 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2478 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_cfg.obj `if test -f 'gtkui/gtk_cfg.c'; then $(CYGPATH_W) 'gtkui/gtk_cfg.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_cfg.c'; fi`
2.2479 +
2.2480 +lxdream-gtk_mmio.o: gtkui/gtk_mmio.c
2.2481 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_mmio.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_mmio.Tpo" -c -o lxdream-gtk_mmio.o `test -f 'gtkui/gtk_mmio.c' || echo '$(srcdir)/'`gtkui/gtk_mmio.c; \
2.2482 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_mmio.Tpo" "$(DEPDIR)/lxdream-gtk_mmio.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_mmio.Tpo"; exit 1; fi
2.2483 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_mmio.c' object='lxdream-gtk_mmio.o' libtool=no @AMDEPBACKSLASH@
2.2484 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2485 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_mmio.o `test -f 'gtkui/gtk_mmio.c' || echo '$(srcdir)/'`gtkui/gtk_mmio.c
2.2486 +
2.2487 +lxdream-gtk_mmio.obj: gtkui/gtk_mmio.c
2.2488 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_mmio.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_mmio.Tpo" -c -o lxdream-gtk_mmio.obj `if test -f 'gtkui/gtk_mmio.c'; then $(CYGPATH_W) 'gtkui/gtk_mmio.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_mmio.c'; fi`; \
2.2489 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_mmio.Tpo" "$(DEPDIR)/lxdream-gtk_mmio.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_mmio.Tpo"; exit 1; fi
2.2490 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_mmio.c' object='lxdream-gtk_mmio.obj' libtool=no @AMDEPBACKSLASH@
2.2491 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2492 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_mmio.obj `if test -f 'gtkui/gtk_mmio.c'; then $(CYGPATH_W) 'gtkui/gtk_mmio.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_mmio.c'; fi`
2.2493 +
2.2494 +lxdream-gtk_debug.o: gtkui/gtk_debug.c
2.2495 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_debug.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_debug.Tpo" -c -o lxdream-gtk_debug.o `test -f 'gtkui/gtk_debug.c' || echo '$(srcdir)/'`gtkui/gtk_debug.c; \
2.2496 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_debug.Tpo" "$(DEPDIR)/lxdream-gtk_debug.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_debug.Tpo"; exit 1; fi
2.2497 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_debug.c' object='lxdream-gtk_debug.o' libtool=no @AMDEPBACKSLASH@
2.2498 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2499 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_debug.o `test -f 'gtkui/gtk_debug.c' || echo '$(srcdir)/'`gtkui/gtk_debug.c
2.2500 +
2.2501 +lxdream-gtk_debug.obj: gtkui/gtk_debug.c
2.2502 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_debug.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_debug.Tpo" -c -o lxdream-gtk_debug.obj `if test -f 'gtkui/gtk_debug.c'; then $(CYGPATH_W) 'gtkui/gtk_debug.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_debug.c'; fi`; \
2.2503 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_debug.Tpo" "$(DEPDIR)/lxdream-gtk_debug.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_debug.Tpo"; exit 1; fi
2.2504 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_debug.c' object='lxdream-gtk_debug.obj' libtool=no @AMDEPBACKSLASH@
2.2505 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2506 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_debug.obj `if test -f 'gtkui/gtk_debug.c'; then $(CYGPATH_W) 'gtkui/gtk_debug.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_debug.c'; fi`
2.2507 +
2.2508 +lxdream-gtk_dump.o: gtkui/gtk_dump.c
2.2509 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_dump.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_dump.Tpo" -c -o lxdream-gtk_dump.o `test -f 'gtkui/gtk_dump.c' || echo '$(srcdir)/'`gtkui/gtk_dump.c; \
2.2510 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_dump.Tpo" "$(DEPDIR)/lxdream-gtk_dump.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_dump.Tpo"; exit 1; fi
2.2511 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_dump.c' object='lxdream-gtk_dump.o' libtool=no @AMDEPBACKSLASH@
2.2512 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2513 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_dump.o `test -f 'gtkui/gtk_dump.c' || echo '$(srcdir)/'`gtkui/gtk_dump.c
2.2514 +
2.2515 +lxdream-gtk_dump.obj: gtkui/gtk_dump.c
2.2516 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_dump.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_dump.Tpo" -c -o lxdream-gtk_dump.obj `if test -f 'gtkui/gtk_dump.c'; then $(CYGPATH_W) 'gtkui/gtk_dump.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_dump.c'; fi`; \
2.2517 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_dump.Tpo" "$(DEPDIR)/lxdream-gtk_dump.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_dump.Tpo"; exit 1; fi
2.2518 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_dump.c' object='lxdream-gtk_dump.obj' libtool=no @AMDEPBACKSLASH@
2.2519 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2520 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_dump.obj `if test -f 'gtkui/gtk_dump.c'; then $(CYGPATH_W) 'gtkui/gtk_dump.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_dump.c'; fi`
2.2521 +
2.2522 +lxdream-gtk_ctrl.o: gtkui/gtk_ctrl.c
2.2523 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_ctrl.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_ctrl.Tpo" -c -o lxdream-gtk_ctrl.o `test -f 'gtkui/gtk_ctrl.c' || echo '$(srcdir)/'`gtkui/gtk_ctrl.c; \
2.2524 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_ctrl.Tpo" "$(DEPDIR)/lxdream-gtk_ctrl.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_ctrl.Tpo"; exit 1; fi
2.2525 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_ctrl.c' object='lxdream-gtk_ctrl.o' libtool=no @AMDEPBACKSLASH@
2.2526 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2527 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_ctrl.o `test -f 'gtkui/gtk_ctrl.c' || echo '$(srcdir)/'`gtkui/gtk_ctrl.c
2.2528 +
2.2529 +lxdream-gtk_ctrl.obj: gtkui/gtk_ctrl.c
2.2530 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_ctrl.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_ctrl.Tpo" -c -o lxdream-gtk_ctrl.obj `if test -f 'gtkui/gtk_ctrl.c'; then $(CYGPATH_W) 'gtkui/gtk_ctrl.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_ctrl.c'; fi`; \
2.2531 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_ctrl.Tpo" "$(DEPDIR)/lxdream-gtk_ctrl.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_ctrl.Tpo"; exit 1; fi
2.2532 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_ctrl.c' object='lxdream-gtk_ctrl.obj' libtool=no @AMDEPBACKSLASH@
2.2533 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2534 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_ctrl.obj `if test -f 'gtkui/gtk_ctrl.c'; then $(CYGPATH_W) 'gtkui/gtk_ctrl.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_ctrl.c'; fi`
2.2535 +
2.2536 +lxdream-gtk_gd.o: gtkui/gtk_gd.c
2.2537 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_gd.o -MD -MP -MF "$(DEPDIR)/lxdream-gtk_gd.Tpo" -c -o lxdream-gtk_gd.o `test -f 'gtkui/gtk_gd.c' || echo '$(srcdir)/'`gtkui/gtk_gd.c; \
2.2538 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_gd.Tpo" "$(DEPDIR)/lxdream-gtk_gd.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_gd.Tpo"; exit 1; fi
2.2539 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_gd.c' object='lxdream-gtk_gd.o' libtool=no @AMDEPBACKSLASH@
2.2540 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2541 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_gd.o `test -f 'gtkui/gtk_gd.c' || echo '$(srcdir)/'`gtkui/gtk_gd.c
2.2542 +
2.2543 +lxdream-gtk_gd.obj: gtkui/gtk_gd.c
2.2544 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gtk_gd.obj -MD -MP -MF "$(DEPDIR)/lxdream-gtk_gd.Tpo" -c -o lxdream-gtk_gd.obj `if test -f 'gtkui/gtk_gd.c'; then $(CYGPATH_W) 'gtkui/gtk_gd.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_gd.c'; fi`; \
2.2545 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gtk_gd.Tpo" "$(DEPDIR)/lxdream-gtk_gd.Po"; else rm -f "$(DEPDIR)/lxdream-gtk_gd.Tpo"; exit 1; fi
2.2546 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_gd.c' object='lxdream-gtk_gd.obj' libtool=no @AMDEPBACKSLASH@
2.2547 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2548 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gtk_gd.obj `if test -f 'gtkui/gtk_gd.c'; then $(CYGPATH_W) 'gtkui/gtk_gd.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_gd.c'; fi`
2.2549 +
2.2550 +lxdream-video_gtk.o: drivers/video_gtk.c
2.2551 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_gtk.o -MD -MP -MF "$(DEPDIR)/lxdream-video_gtk.Tpo" -c -o lxdream-video_gtk.o `test -f 'drivers/video_gtk.c' || echo '$(srcdir)/'`drivers/video_gtk.c; \
2.2552 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_gtk.Tpo" "$(DEPDIR)/lxdream-video_gtk.Po"; else rm -f "$(DEPDIR)/lxdream-video_gtk.Tpo"; exit 1; fi
2.2553 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gtk.c' object='lxdream-video_gtk.o' libtool=no @AMDEPBACKSLASH@
2.2554 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2555 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_gtk.o `test -f 'drivers/video_gtk.c' || echo '$(srcdir)/'`drivers/video_gtk.c
2.2556 +
2.2557 +lxdream-video_gtk.obj: drivers/video_gtk.c
2.2558 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_gtk.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_gtk.Tpo" -c -o lxdream-video_gtk.obj `if test -f 'drivers/video_gtk.c'; then $(CYGPATH_W) 'drivers/video_gtk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gtk.c'; fi`; \
2.2559 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_gtk.Tpo" "$(DEPDIR)/lxdream-video_gtk.Po"; else rm -f "$(DEPDIR)/lxdream-video_gtk.Tpo"; exit 1; fi
2.2560 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gtk.c' object='lxdream-video_gtk.obj' libtool=no @AMDEPBACKSLASH@
2.2561 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2562 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_gtk.obj `if test -f 'drivers/video_gtk.c'; then $(CYGPATH_W) 'drivers/video_gtk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gtk.c'; fi`
2.2563 +
2.2564 +lxdream-gui_none.o: gui_none.c
2.2565 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gui_none.o -MD -MP -MF "$(DEPDIR)/lxdream-gui_none.Tpo" -c -o lxdream-gui_none.o `test -f 'gui_none.c' || echo '$(srcdir)/'`gui_none.c; \
2.2566 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gui_none.Tpo" "$(DEPDIR)/lxdream-gui_none.Po"; else rm -f "$(DEPDIR)/lxdream-gui_none.Tpo"; exit 1; fi
2.2567 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gui_none.c' object='lxdream-gui_none.o' libtool=no @AMDEPBACKSLASH@
2.2568 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2569 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gui_none.o `test -f 'gui_none.c' || echo '$(srcdir)/'`gui_none.c
2.2570 +
2.2571 +lxdream-gui_none.obj: gui_none.c
2.2572 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-gui_none.obj -MD -MP -MF "$(DEPDIR)/lxdream-gui_none.Tpo" -c -o lxdream-gui_none.obj `if test -f 'gui_none.c'; then $(CYGPATH_W) 'gui_none.c'; else $(CYGPATH_W) '$(srcdir)/gui_none.c'; fi`; \
2.2573 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-gui_none.Tpo" "$(DEPDIR)/lxdream-gui_none.Po"; else rm -f "$(DEPDIR)/lxdream-gui_none.Tpo"; exit 1; fi
2.2574 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gui_none.c' object='lxdream-gui_none.obj' libtool=no @AMDEPBACKSLASH@
2.2575 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2576 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-gui_none.obj `if test -f 'gui_none.c'; then $(CYGPATH_W) 'gui_none.c'; else $(CYGPATH_W) '$(srcdir)/gui_none.c'; fi`
2.2577 +
2.2578 +lxdream-video_egl.o: drivers/video_egl.c
2.2579 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_egl.o -MD -MP -MF "$(DEPDIR)/lxdream-video_egl.Tpo" -c -o lxdream-video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c; \
2.2580 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_egl.Tpo" "$(DEPDIR)/lxdream-video_egl.Po"; else rm -f "$(DEPDIR)/lxdream-video_egl.Tpo"; exit 1; fi
2.2581 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='lxdream-video_egl.o' libtool=no @AMDEPBACKSLASH@
2.2582 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2583 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c
2.2584 +
2.2585 +lxdream-video_egl.obj: drivers/video_egl.c
2.2586 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_egl.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_egl.Tpo" -c -o lxdream-video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`; \
2.2587 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_egl.Tpo" "$(DEPDIR)/lxdream-video_egl.Po"; else rm -f "$(DEPDIR)/lxdream-video_egl.Tpo"; exit 1; fi
2.2588 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='lxdream-video_egl.obj' libtool=no @AMDEPBACKSLASH@
2.2589 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2590 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`
2.2591 +
2.2592 +lxdream-video_gdk.o: drivers/video_gdk.c
2.2593 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_gdk.o -MD -MP -MF "$(DEPDIR)/lxdream-video_gdk.Tpo" -c -o lxdream-video_gdk.o `test -f 'drivers/video_gdk.c' || echo '$(srcdir)/'`drivers/video_gdk.c; \
2.2594 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_gdk.Tpo" "$(DEPDIR)/lxdream-video_gdk.Po"; else rm -f "$(DEPDIR)/lxdream-video_gdk.Tpo"; exit 1; fi
2.2595 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gdk.c' object='lxdream-video_gdk.o' libtool=no @AMDEPBACKSLASH@
2.2596 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2597 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_gdk.o `test -f 'drivers/video_gdk.c' || echo '$(srcdir)/'`drivers/video_gdk.c
2.2598 +
2.2599 +lxdream-video_gdk.obj: drivers/video_gdk.c
2.2600 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_gdk.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_gdk.Tpo" -c -o lxdream-video_gdk.obj `if test -f 'drivers/video_gdk.c'; then $(CYGPATH_W) 'drivers/video_gdk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gdk.c'; fi`; \
2.2601 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_gdk.Tpo" "$(DEPDIR)/lxdream-video_gdk.Po"; else rm -f "$(DEPDIR)/lxdream-video_gdk.Tpo"; exit 1; fi
2.2602 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gdk.c' object='lxdream-video_gdk.obj' libtool=no @AMDEPBACKSLASH@
2.2603 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2604 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_gdk.obj `if test -f 'drivers/video_gdk.c'; then $(CYGPATH_W) 'drivers/video_gdk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gdk.c'; fi`
2.2605 +
2.2606 +lxdream-video_glx.o: drivers/video_glx.c
2.2607 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_glx.o -MD -MP -MF "$(DEPDIR)/lxdream-video_glx.Tpo" -c -o lxdream-video_glx.o `test -f 'drivers/video_glx.c' || echo '$(srcdir)/'`drivers/video_glx.c; \
2.2608 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_glx.Tpo" "$(DEPDIR)/lxdream-video_glx.Po"; else rm -f "$(DEPDIR)/lxdream-video_glx.Tpo"; exit 1; fi
2.2609 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_glx.c' object='lxdream-video_glx.o' libtool=no @AMDEPBACKSLASH@
2.2610 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2611 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_glx.o `test -f 'drivers/video_glx.c' || echo '$(srcdir)/'`drivers/video_glx.c
2.2612 +
2.2613 +lxdream-video_glx.obj: drivers/video_glx.c
2.2614 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-video_glx.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_glx.Tpo" -c -o lxdream-video_glx.obj `if test -f 'drivers/video_glx.c'; then $(CYGPATH_W) 'drivers/video_glx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_glx.c'; fi`; \
2.2615 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_glx.Tpo" "$(DEPDIR)/lxdream-video_glx.Po"; else rm -f "$(DEPDIR)/lxdream-video_glx.Tpo"; exit 1; fi
2.2616 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_glx.c' object='lxdream-video_glx.obj' libtool=no @AMDEPBACKSLASH@
2.2617 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2618 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-video_glx.obj `if test -f 'drivers/video_glx.c'; then $(CYGPATH_W) 'drivers/video_glx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_glx.c'; fi`
2.2619 +
2.2620 +lxdream-audio_sdl.o: drivers/audio_sdl.c
2.2621 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_sdl.o -MD -MP -MF "$(DEPDIR)/lxdream-audio_sdl.Tpo" -c -o lxdream-audio_sdl.o `test -f 'drivers/audio_sdl.c' || echo '$(srcdir)/'`drivers/audio_sdl.c; \
2.2622 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_sdl.Tpo" "$(DEPDIR)/lxdream-audio_sdl.Po"; else rm -f "$(DEPDIR)/lxdream-audio_sdl.Tpo"; exit 1; fi
2.2623 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_sdl.c' object='lxdream-audio_sdl.o' libtool=no @AMDEPBACKSLASH@
2.2624 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2625 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_sdl.o `test -f 'drivers/audio_sdl.c' || echo '$(srcdir)/'`drivers/audio_sdl.c
2.2626 +
2.2627 +lxdream-audio_sdl.obj: drivers/audio_sdl.c
2.2628 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_sdl.obj -MD -MP -MF "$(DEPDIR)/lxdream-audio_sdl.Tpo" -c -o lxdream-audio_sdl.obj `if test -f 'drivers/audio_sdl.c'; then $(CYGPATH_W) 'drivers/audio_sdl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_sdl.c'; fi`; \
2.2629 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_sdl.Tpo" "$(DEPDIR)/lxdream-audio_sdl.Po"; else rm -f "$(DEPDIR)/lxdream-audio_sdl.Tpo"; exit 1; fi
2.2630 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_sdl.c' object='lxdream-audio_sdl.obj' libtool=no @AMDEPBACKSLASH@
2.2631 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2632 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_sdl.obj `if test -f 'drivers/audio_sdl.c'; then $(CYGPATH_W) 'drivers/audio_sdl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_sdl.c'; fi`
2.2633 +
2.2634 +lxdream-audio_pulse.o: drivers/audio_pulse.c
2.2635 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_pulse.o -MD -MP -MF "$(DEPDIR)/lxdream-audio_pulse.Tpo" -c -o lxdream-audio_pulse.o `test -f 'drivers/audio_pulse.c' || echo '$(srcdir)/'`drivers/audio_pulse.c; \
2.2636 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_pulse.Tpo" "$(DEPDIR)/lxdream-audio_pulse.Po"; else rm -f "$(DEPDIR)/lxdream-audio_pulse.Tpo"; exit 1; fi
2.2637 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_pulse.c' object='lxdream-audio_pulse.o' libtool=no @AMDEPBACKSLASH@
2.2638 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2639 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_pulse.o `test -f 'drivers/audio_pulse.c' || echo '$(srcdir)/'`drivers/audio_pulse.c
2.2640 +
2.2641 +lxdream-audio_pulse.obj: drivers/audio_pulse.c
2.2642 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_pulse.obj -MD -MP -MF "$(DEPDIR)/lxdream-audio_pulse.Tpo" -c -o lxdream-audio_pulse.obj `if test -f 'drivers/audio_pulse.c'; then $(CYGPATH_W) 'drivers/audio_pulse.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_pulse.c'; fi`; \
2.2643 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_pulse.Tpo" "$(DEPDIR)/lxdream-audio_pulse.Po"; else rm -f "$(DEPDIR)/lxdream-audio_pulse.Tpo"; exit 1; fi
2.2644 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_pulse.c' object='lxdream-audio_pulse.obj' libtool=no @AMDEPBACKSLASH@
2.2645 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2646 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_pulse.obj `if test -f 'drivers/audio_pulse.c'; then $(CYGPATH_W) 'drivers/audio_pulse.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_pulse.c'; fi`
2.2647 +
2.2648 +lxdream-audio_esd.o: drivers/audio_esd.c
2.2649 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_esd.o -MD -MP -MF "$(DEPDIR)/lxdream-audio_esd.Tpo" -c -o lxdream-audio_esd.o `test -f 'drivers/audio_esd.c' || echo '$(srcdir)/'`drivers/audio_esd.c; \
2.2650 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_esd.Tpo" "$(DEPDIR)/lxdream-audio_esd.Po"; else rm -f "$(DEPDIR)/lxdream-audio_esd.Tpo"; exit 1; fi
2.2651 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_esd.c' object='lxdream-audio_esd.o' libtool=no @AMDEPBACKSLASH@
2.2652 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2653 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_esd.o `test -f 'drivers/audio_esd.c' || echo '$(srcdir)/'`drivers/audio_esd.c
2.2654 +
2.2655 +lxdream-audio_esd.obj: drivers/audio_esd.c
2.2656 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_esd.obj -MD -MP -MF "$(DEPDIR)/lxdream-audio_esd.Tpo" -c -o lxdream-audio_esd.obj `if test -f 'drivers/audio_esd.c'; then $(CYGPATH_W) 'drivers/audio_esd.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_esd.c'; fi`; \
2.2657 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_esd.Tpo" "$(DEPDIR)/lxdream-audio_esd.Po"; else rm -f "$(DEPDIR)/lxdream-audio_esd.Tpo"; exit 1; fi
2.2658 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_esd.c' object='lxdream-audio_esd.obj' libtool=no @AMDEPBACKSLASH@
2.2659 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2660 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_esd.obj `if test -f 'drivers/audio_esd.c'; then $(CYGPATH_W) 'drivers/audio_esd.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_esd.c'; fi`
2.2661 +
2.2662 +lxdream-audio_alsa.o: drivers/audio_alsa.c
2.2663 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_alsa.o -MD -MP -MF "$(DEPDIR)/lxdream-audio_alsa.Tpo" -c -o lxdream-audio_alsa.o `test -f 'drivers/audio_alsa.c' || echo '$(srcdir)/'`drivers/audio_alsa.c; \
2.2664 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_alsa.Tpo" "$(DEPDIR)/lxdream-audio_alsa.Po"; else rm -f "$(DEPDIR)/lxdream-audio_alsa.Tpo"; exit 1; fi
2.2665 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_alsa.c' object='lxdream-audio_alsa.o' libtool=no @AMDEPBACKSLASH@
2.2666 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2667 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_alsa.o `test -f 'drivers/audio_alsa.c' || echo '$(srcdir)/'`drivers/audio_alsa.c
2.2668 +
2.2669 +lxdream-audio_alsa.obj: drivers/audio_alsa.c
2.2670 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-audio_alsa.obj -MD -MP -MF "$(DEPDIR)/lxdream-audio_alsa.Tpo" -c -o lxdream-audio_alsa.obj `if test -f 'drivers/audio_alsa.c'; then $(CYGPATH_W) 'drivers/audio_alsa.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_alsa.c'; fi`; \
2.2671 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_alsa.Tpo" "$(DEPDIR)/lxdream-audio_alsa.Po"; else rm -f "$(DEPDIR)/lxdream-audio_alsa.Tpo"; exit 1; fi
2.2672 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_alsa.c' object='lxdream-audio_alsa.obj' libtool=no @AMDEPBACKSLASH@
2.2673 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2674 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-audio_alsa.obj `if test -f 'drivers/audio_alsa.c'; then $(CYGPATH_W) 'drivers/audio_alsa.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_alsa.c'; fi`
2.2675 +
2.2676 +lxdream-input_lirc.o: drivers/input_lirc.c
2.2677 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-input_lirc.o -MD -MP -MF "$(DEPDIR)/lxdream-input_lirc.Tpo" -c -o lxdream-input_lirc.o `test -f 'drivers/input_lirc.c' || echo '$(srcdir)/'`drivers/input_lirc.c; \
2.2678 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-input_lirc.Tpo" "$(DEPDIR)/lxdream-input_lirc.Po"; else rm -f "$(DEPDIR)/lxdream-input_lirc.Tpo"; exit 1; fi
2.2679 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/input_lirc.c' object='lxdream-input_lirc.o' libtool=no @AMDEPBACKSLASH@
2.2680 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2681 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-input_lirc.o `test -f 'drivers/input_lirc.c' || echo '$(srcdir)/'`drivers/input_lirc.c
2.2682 +
2.2683 +lxdream-input_lirc.obj: drivers/input_lirc.c
2.2684 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-input_lirc.obj -MD -MP -MF "$(DEPDIR)/lxdream-input_lirc.Tpo" -c -o lxdream-input_lirc.obj `if test -f 'drivers/input_lirc.c'; then $(CYGPATH_W) 'drivers/input_lirc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/input_lirc.c'; fi`; \
2.2685 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-input_lirc.Tpo" "$(DEPDIR)/lxdream-input_lirc.Po"; else rm -f "$(DEPDIR)/lxdream-input_lirc.Tpo"; exit 1; fi
2.2686 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/input_lirc.c' object='lxdream-input_lirc.obj' libtool=no @AMDEPBACKSLASH@
2.2687 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2688 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-input_lirc.obj `if test -f 'drivers/input_lirc.c'; then $(CYGPATH_W) 'drivers/input_lirc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/input_lirc.c'; fi`
2.2689 +
2.2690 +lxdream-cd_linux.o: drivers/cdrom/cd_linux.c
2.2691 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_linux.o -MD -MP -MF "$(DEPDIR)/lxdream-cd_linux.Tpo" -c -o lxdream-cd_linux.o `test -f 'drivers/cdrom/cd_linux.c' || echo '$(srcdir)/'`drivers/cdrom/cd_linux.c; \
2.2692 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_linux.Tpo" "$(DEPDIR)/lxdream-cd_linux.Po"; else rm -f "$(DEPDIR)/lxdream-cd_linux.Tpo"; exit 1; fi
2.2693 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_linux.c' object='lxdream-cd_linux.o' libtool=no @AMDEPBACKSLASH@
2.2694 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2695 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_linux.o `test -f 'drivers/cdrom/cd_linux.c' || echo '$(srcdir)/'`drivers/cdrom/cd_linux.c
2.2696 +
2.2697 +lxdream-cd_linux.obj: drivers/cdrom/cd_linux.c
2.2698 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_linux.obj -MD -MP -MF "$(DEPDIR)/lxdream-cd_linux.Tpo" -c -o lxdream-cd_linux.obj `if test -f 'drivers/cdrom/cd_linux.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_linux.c'; fi`; \
2.2699 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_linux.Tpo" "$(DEPDIR)/lxdream-cd_linux.Po"; else rm -f "$(DEPDIR)/lxdream-cd_linux.Tpo"; exit 1; fi
2.2700 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_linux.c' object='lxdream-cd_linux.obj' libtool=no @AMDEPBACKSLASH@
2.2701 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2702 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_linux.obj `if test -f 'drivers/cdrom/cd_linux.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_linux.c'; fi`
2.2703 +
2.2704 +lxdream-cd_osx.o: drivers/cdrom/cd_osx.c
2.2705 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_osx.o -MD -MP -MF "$(DEPDIR)/lxdream-cd_osx.Tpo" -c -o lxdream-cd_osx.o `test -f 'drivers/cdrom/cd_osx.c' || echo '$(srcdir)/'`drivers/cdrom/cd_osx.c; \
2.2706 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_osx.Tpo" "$(DEPDIR)/lxdream-cd_osx.Po"; else rm -f "$(DEPDIR)/lxdream-cd_osx.Tpo"; exit 1; fi
2.2707 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_osx.c' object='lxdream-cd_osx.o' libtool=no @AMDEPBACKSLASH@
2.2708 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2709 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_osx.o `test -f 'drivers/cdrom/cd_osx.c' || echo '$(srcdir)/'`drivers/cdrom/cd_osx.c
2.2710 +
2.2711 +lxdream-cd_osx.obj: drivers/cdrom/cd_osx.c
2.2712 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_osx.obj -MD -MP -MF "$(DEPDIR)/lxdream-cd_osx.Tpo" -c -o lxdream-cd_osx.obj `if test -f 'drivers/cdrom/cd_osx.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_osx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_osx.c'; fi`; \
2.2713 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_osx.Tpo" "$(DEPDIR)/lxdream-cd_osx.Po"; else rm -f "$(DEPDIR)/lxdream-cd_osx.Tpo"; exit 1; fi
2.2714 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_osx.c' object='lxdream-cd_osx.obj' libtool=no @AMDEPBACKSLASH@
2.2715 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2716 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_osx.obj `if test -f 'drivers/cdrom/cd_osx.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_osx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_osx.c'; fi`
2.2717 +
2.2718 +lxdream-cd_none.o: drivers/cdrom/cd_none.c
2.2719 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_none.o -MD -MP -MF "$(DEPDIR)/lxdream-cd_none.Tpo" -c -o lxdream-cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c; \
2.2720 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_none.Tpo" "$(DEPDIR)/lxdream-cd_none.Po"; else rm -f "$(DEPDIR)/lxdream-cd_none.Tpo"; exit 1; fi
2.2721 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='lxdream-cd_none.o' libtool=no @AMDEPBACKSLASH@
2.2722 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2723 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c
2.2724 +
2.2725 +lxdream-cd_none.obj: drivers/cdrom/cd_none.c
2.2726 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-cd_none.obj -MD -MP -MF "$(DEPDIR)/lxdream-cd_none.Tpo" -c -o lxdream-cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`; \
2.2727 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cd_none.Tpo" "$(DEPDIR)/lxdream-cd_none.Po"; else rm -f "$(DEPDIR)/lxdream-cd_none.Tpo"; exit 1; fi
2.2728 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='lxdream-cd_none.obj' libtool=no @AMDEPBACKSLASH@
2.2729 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2730 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`
2.2731 +
2.2732 +lxdream-joy_linux.o: drivers/joy_linux.c
2.2733 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-joy_linux.o -MD -MP -MF "$(DEPDIR)/lxdream-joy_linux.Tpo" -c -o lxdream-joy_linux.o `test -f 'drivers/joy_linux.c' || echo '$(srcdir)/'`drivers/joy_linux.c; \
2.2734 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-joy_linux.Tpo" "$(DEPDIR)/lxdream-joy_linux.Po"; else rm -f "$(DEPDIR)/lxdream-joy_linux.Tpo"; exit 1; fi
2.2735 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/joy_linux.c' object='lxdream-joy_linux.o' libtool=no @AMDEPBACKSLASH@
2.2736 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2737 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-joy_linux.o `test -f 'drivers/joy_linux.c' || echo '$(srcdir)/'`drivers/joy_linux.c
2.2738 +
2.2739 +lxdream-joy_linux.obj: drivers/joy_linux.c
2.2740 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lxdream-joy_linux.obj -MD -MP -MF "$(DEPDIR)/lxdream-joy_linux.Tpo" -c -o lxdream-joy_linux.obj `if test -f 'drivers/joy_linux.c'; then $(CYGPATH_W) 'drivers/joy_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/joy_linux.c'; fi`; \
2.2741 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lxdream-joy_linux.Tpo" "$(DEPDIR)/lxdream-joy_linux.Po"; else rm -f "$(DEPDIR)/lxdream-joy_linux.Tpo"; exit 1; fi
2.2742 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/joy_linux.c' object='lxdream-joy_linux.obj' libtool=no @AMDEPBACKSLASH@
2.2743 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2744 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lxdream-joy_linux.obj `if test -f 'drivers/joy_linux.c'; then $(CYGPATH_W) 'drivers/joy_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/joy_linux.c'; fi`
2.2745 +
2.2746 +testlxpaths.o: test/testlxpaths.c
2.2747 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlxpaths.o -MD -MP -MF "$(DEPDIR)/testlxpaths.Tpo" -c -o testlxpaths.o `test -f 'test/testlxpaths.c' || echo '$(srcdir)/'`test/testlxpaths.c; \
2.2748 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testlxpaths.Tpo" "$(DEPDIR)/testlxpaths.Po"; else rm -f "$(DEPDIR)/testlxpaths.Tpo"; exit 1; fi
2.2749 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testlxpaths.c' object='testlxpaths.o' libtool=no @AMDEPBACKSLASH@
2.2750 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2751 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlxpaths.o `test -f 'test/testlxpaths.c' || echo '$(srcdir)/'`test/testlxpaths.c
2.2752 +
2.2753 +testlxpaths.obj: test/testlxpaths.c
2.2754 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlxpaths.obj -MD -MP -MF "$(DEPDIR)/testlxpaths.Tpo" -c -o testlxpaths.obj `if test -f 'test/testlxpaths.c'; then $(CYGPATH_W) 'test/testlxpaths.c'; else $(CYGPATH_W) '$(srcdir)/test/testlxpaths.c'; fi`; \
2.2755 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testlxpaths.Tpo" "$(DEPDIR)/testlxpaths.Po"; else rm -f "$(DEPDIR)/testlxpaths.Tpo"; exit 1; fi
2.2756 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testlxpaths.c' object='testlxpaths.obj' libtool=no @AMDEPBACKSLASH@
2.2757 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2758 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlxpaths.obj `if test -f 'test/testlxpaths.c'; then $(CYGPATH_W) 'test/testlxpaths.c'; else $(CYGPATH_W) '$(srcdir)/test/testlxpaths.c'; fi`
2.2759 +
2.2760 +testsh4x86.o: test/testsh4x86.c
2.2761 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testsh4x86.o -MD -MP -MF "$(DEPDIR)/testsh4x86.Tpo" -c -o testsh4x86.o `test -f 'test/testsh4x86.c' || echo '$(srcdir)/'`test/testsh4x86.c; \
2.2762 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testsh4x86.Tpo" "$(DEPDIR)/testsh4x86.Po"; else rm -f "$(DEPDIR)/testsh4x86.Tpo"; exit 1; fi
2.2763 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testsh4x86.c' object='testsh4x86.o' libtool=no @AMDEPBACKSLASH@
2.2764 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2765 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testsh4x86.o `test -f 'test/testsh4x86.c' || echo '$(srcdir)/'`test/testsh4x86.c
2.2766 +
2.2767 +testsh4x86.obj: test/testsh4x86.c
2.2768 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testsh4x86.obj -MD -MP -MF "$(DEPDIR)/testsh4x86.Tpo" -c -o testsh4x86.obj `if test -f 'test/testsh4x86.c'; then $(CYGPATH_W) 'test/testsh4x86.c'; else $(CYGPATH_W) '$(srcdir)/test/testsh4x86.c'; fi`; \
2.2769 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testsh4x86.Tpo" "$(DEPDIR)/testsh4x86.Po"; else rm -f "$(DEPDIR)/testsh4x86.Tpo"; exit 1; fi
2.2770 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testsh4x86.c' object='testsh4x86.obj' libtool=no @AMDEPBACKSLASH@
2.2771 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2772 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testsh4x86.obj `if test -f 'test/testsh4x86.c'; then $(CYGPATH_W) 'test/testsh4x86.c'; else $(CYGPATH_W) '$(srcdir)/test/testsh4x86.c'; fi`
2.2773
2.2774 x86dasm.o: x86dasm/x86dasm.c
2.2775 @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86dasm.o -MD -MP -MF "$(DEPDIR)/x86dasm.Tpo" -c -o x86dasm.o `test -f 'x86dasm/x86dasm.c' || echo '$(srcdir)/'`x86dasm/x86dasm.c; \
2.2776 @@ -1832,355 +2694,61 @@
2.2777 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2778 @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dis-buf.obj `if test -f 'x86dasm/dis-buf.c'; then $(CYGPATH_W) 'x86dasm/dis-buf.c'; else $(CYGPATH_W) '$(srcdir)/x86dasm/dis-buf.c'; fi`
2.2779
2.2780 -io_glib.o: drivers/io_glib.c
2.2781 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT io_glib.o -MD -MP -MF "$(DEPDIR)/io_glib.Tpo" -c -o io_glib.o `test -f 'drivers/io_glib.c' || echo '$(srcdir)/'`drivers/io_glib.c; \
2.2782 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/io_glib.Tpo" "$(DEPDIR)/io_glib.Po"; else rm -f "$(DEPDIR)/io_glib.Tpo"; exit 1; fi
2.2783 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/io_glib.c' object='io_glib.o' libtool=no @AMDEPBACKSLASH@
2.2784 +sh4trans.o: sh4/sh4trans.c
2.2785 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4trans.o -MD -MP -MF "$(DEPDIR)/sh4trans.Tpo" -c -o sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c; \
2.2786 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4trans.Tpo" "$(DEPDIR)/sh4trans.Po"; else rm -f "$(DEPDIR)/sh4trans.Tpo"; exit 1; fi
2.2787 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='sh4trans.o' libtool=no @AMDEPBACKSLASH@
2.2788 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2789 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o io_glib.o `test -f 'drivers/io_glib.c' || echo '$(srcdir)/'`drivers/io_glib.c
2.2790 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4trans.o `test -f 'sh4/sh4trans.c' || echo '$(srcdir)/'`sh4/sh4trans.c
2.2791
2.2792 -io_glib.obj: drivers/io_glib.c
2.2793 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT io_glib.obj -MD -MP -MF "$(DEPDIR)/io_glib.Tpo" -c -o io_glib.obj `if test -f 'drivers/io_glib.c'; then $(CYGPATH_W) 'drivers/io_glib.c'; else $(CYGPATH_W) '$(srcdir)/drivers/io_glib.c'; fi`; \
2.2794 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/io_glib.Tpo" "$(DEPDIR)/io_glib.Po"; else rm -f "$(DEPDIR)/io_glib.Tpo"; exit 1; fi
2.2795 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/io_glib.c' object='io_glib.obj' libtool=no @AMDEPBACKSLASH@
2.2796 +sh4trans.obj: sh4/sh4trans.c
2.2797 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4trans.obj -MD -MP -MF "$(DEPDIR)/sh4trans.Tpo" -c -o sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`; \
2.2798 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4trans.Tpo" "$(DEPDIR)/sh4trans.Po"; else rm -f "$(DEPDIR)/sh4trans.Tpo"; exit 1; fi
2.2799 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4trans.c' object='sh4trans.obj' libtool=no @AMDEPBACKSLASH@
2.2800 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2801 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o io_glib.obj `if test -f 'drivers/io_glib.c'; then $(CYGPATH_W) 'drivers/io_glib.c'; else $(CYGPATH_W) '$(srcdir)/drivers/io_glib.c'; fi`
2.2802 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4trans.obj `if test -f 'sh4/sh4trans.c'; then $(CYGPATH_W) 'sh4/sh4trans.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4trans.c'; fi`
2.2803
2.2804 -cd_none.o: drivers/cdrom/cd_none.c
2.2805 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_none.o -MD -MP -MF "$(DEPDIR)/cd_none.Tpo" -c -o cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c; \
2.2806 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_none.Tpo" "$(DEPDIR)/cd_none.Po"; else rm -f "$(DEPDIR)/cd_none.Tpo"; exit 1; fi
2.2807 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='cd_none.o' libtool=no @AMDEPBACKSLASH@
2.2808 +sh4x86.o: sh4/sh4x86.c
2.2809 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4x86.o -MD -MP -MF "$(DEPDIR)/sh4x86.Tpo" -c -o sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c; \
2.2810 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4x86.Tpo" "$(DEPDIR)/sh4x86.Po"; else rm -f "$(DEPDIR)/sh4x86.Tpo"; exit 1; fi
2.2811 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='sh4x86.o' libtool=no @AMDEPBACKSLASH@
2.2812 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2813 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_none.o `test -f 'drivers/cdrom/cd_none.c' || echo '$(srcdir)/'`drivers/cdrom/cd_none.c
2.2814 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4x86.o `test -f 'sh4/sh4x86.c' || echo '$(srcdir)/'`sh4/sh4x86.c
2.2815
2.2816 -cd_none.obj: drivers/cdrom/cd_none.c
2.2817 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_none.obj -MD -MP -MF "$(DEPDIR)/cd_none.Tpo" -c -o cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`; \
2.2818 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_none.Tpo" "$(DEPDIR)/cd_none.Po"; else rm -f "$(DEPDIR)/cd_none.Tpo"; exit 1; fi
2.2819 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_none.c' object='cd_none.obj' libtool=no @AMDEPBACKSLASH@
2.2820 +sh4x86.obj: sh4/sh4x86.c
2.2821 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4x86.obj -MD -MP -MF "$(DEPDIR)/sh4x86.Tpo" -c -o sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`; \
2.2822 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4x86.Tpo" "$(DEPDIR)/sh4x86.Po"; else rm -f "$(DEPDIR)/sh4x86.Tpo"; exit 1; fi
2.2823 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4x86.c' object='sh4x86.obj' libtool=no @AMDEPBACKSLASH@
2.2824 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2825 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_none.obj `if test -f 'drivers/cdrom/cd_none.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_none.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_none.c'; fi`
2.2826 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4x86.obj `if test -f 'sh4/sh4x86.c'; then $(CYGPATH_W) 'sh4/sh4x86.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4x86.c'; fi`
2.2827
2.2828 -video_egl.o: drivers/video_egl.c
2.2829 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_egl.o -MD -MP -MF "$(DEPDIR)/video_egl.Tpo" -c -o video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c; \
2.2830 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_egl.Tpo" "$(DEPDIR)/video_egl.Po"; else rm -f "$(DEPDIR)/video_egl.Tpo"; exit 1; fi
2.2831 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='video_egl.o' libtool=no @AMDEPBACKSLASH@
2.2832 +xltcache.o: xlat/xltcache.c
2.2833 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xltcache.o -MD -MP -MF "$(DEPDIR)/xltcache.Tpo" -c -o xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c; \
2.2834 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/xltcache.Tpo" "$(DEPDIR)/xltcache.Po"; else rm -f "$(DEPDIR)/xltcache.Tpo"; exit 1; fi
2.2835 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='xltcache.o' libtool=no @AMDEPBACKSLASH@
2.2836 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2837 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_egl.o `test -f 'drivers/video_egl.c' || echo '$(srcdir)/'`drivers/video_egl.c
2.2838 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xltcache.o `test -f 'xlat/xltcache.c' || echo '$(srcdir)/'`xlat/xltcache.c
2.2839
2.2840 -video_egl.obj: drivers/video_egl.c
2.2841 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_egl.obj -MD -MP -MF "$(DEPDIR)/video_egl.Tpo" -c -o video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`; \
2.2842 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_egl.Tpo" "$(DEPDIR)/video_egl.Po"; else rm -f "$(DEPDIR)/video_egl.Tpo"; exit 1; fi
2.2843 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_egl.c' object='video_egl.obj' libtool=no @AMDEPBACKSLASH@
2.2844 +xltcache.obj: xlat/xltcache.c
2.2845 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xltcache.obj -MD -MP -MF "$(DEPDIR)/xltcache.Tpo" -c -o xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`; \
2.2846 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/xltcache.Tpo" "$(DEPDIR)/xltcache.Po"; else rm -f "$(DEPDIR)/xltcache.Tpo"; exit 1; fi
2.2847 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xlat/xltcache.c' object='xltcache.obj' libtool=no @AMDEPBACKSLASH@
2.2848 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2849 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_egl.obj `if test -f 'drivers/video_egl.c'; then $(CYGPATH_W) 'drivers/video_egl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_egl.c'; fi`
2.2850 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xltcache.obj `if test -f 'xlat/xltcache.c'; then $(CYGPATH_W) 'xlat/xltcache.c'; else $(CYGPATH_W) '$(srcdir)/xlat/xltcache.c'; fi`
2.2851
2.2852 -gtkui.o: gtkui/gtkui.c
2.2853 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtkui.o -MD -MP -MF "$(DEPDIR)/gtkui.Tpo" -c -o gtkui.o `test -f 'gtkui/gtkui.c' || echo '$(srcdir)/'`gtkui/gtkui.c; \
2.2854 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtkui.Tpo" "$(DEPDIR)/gtkui.Po"; else rm -f "$(DEPDIR)/gtkui.Tpo"; exit 1; fi
2.2855 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkui.c' object='gtkui.o' libtool=no @AMDEPBACKSLASH@
2.2856 +sh4dasm.o: sh4/sh4dasm.c
2.2857 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4dasm.o -MD -MP -MF "$(DEPDIR)/sh4dasm.Tpo" -c -o sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c; \
2.2858 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4dasm.Tpo" "$(DEPDIR)/sh4dasm.Po"; else rm -f "$(DEPDIR)/sh4dasm.Tpo"; exit 1; fi
2.2859 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='sh4dasm.o' libtool=no @AMDEPBACKSLASH@
2.2860 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2861 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtkui.o `test -f 'gtkui/gtkui.c' || echo '$(srcdir)/'`gtkui/gtkui.c
2.2862 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4dasm.o `test -f 'sh4/sh4dasm.c' || echo '$(srcdir)/'`sh4/sh4dasm.c
2.2863
2.2864 -gtkui.obj: gtkui/gtkui.c
2.2865 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtkui.obj -MD -MP -MF "$(DEPDIR)/gtkui.Tpo" -c -o gtkui.obj `if test -f 'gtkui/gtkui.c'; then $(CYGPATH_W) 'gtkui/gtkui.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkui.c'; fi`; \
2.2866 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtkui.Tpo" "$(DEPDIR)/gtkui.Po"; else rm -f "$(DEPDIR)/gtkui.Tpo"; exit 1; fi
2.2867 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkui.c' object='gtkui.obj' libtool=no @AMDEPBACKSLASH@
2.2868 +sh4dasm.obj: sh4/sh4dasm.c
2.2869 +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sh4dasm.obj -MD -MP -MF "$(DEPDIR)/sh4dasm.Tpo" -c -o sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`; \
2.2870 +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sh4dasm.Tpo" "$(DEPDIR)/sh4dasm.Po"; else rm -f "$(DEPDIR)/sh4dasm.Tpo"; exit 1; fi
2.2871 +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sh4/sh4dasm.c' object='sh4dasm.obj' libtool=no @AMDEPBACKSLASH@
2.2872 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2873 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtkui.obj `if test -f 'gtkui/gtkui.c'; then $(CYGPATH_W) 'gtkui/gtkui.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkui.c'; fi`
2.2874 -
2.2875 -gtk_win.o: gtkui/gtk_win.c
2.2876 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_win.o -MD -MP -MF "$(DEPDIR)/gtk_win.Tpo" -c -o gtk_win.o `test -f 'gtkui/gtk_win.c' || echo '$(srcdir)/'`gtkui/gtk_win.c; \
2.2877 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_win.Tpo" "$(DEPDIR)/gtk_win.Po"; else rm -f "$(DEPDIR)/gtk_win.Tpo"; exit 1; fi
2.2878 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_win.c' object='gtk_win.o' libtool=no @AMDEPBACKSLASH@
2.2879 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2880 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_win.o `test -f 'gtkui/gtk_win.c' || echo '$(srcdir)/'`gtkui/gtk_win.c
2.2881 -
2.2882 -gtk_win.obj: gtkui/gtk_win.c
2.2883 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_win.obj -MD -MP -MF "$(DEPDIR)/gtk_win.Tpo" -c -o gtk_win.obj `if test -f 'gtkui/gtk_win.c'; then $(CYGPATH_W) 'gtkui/gtk_win.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_win.c'; fi`; \
2.2884 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_win.Tpo" "$(DEPDIR)/gtk_win.Po"; else rm -f "$(DEPDIR)/gtk_win.Tpo"; exit 1; fi
2.2885 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_win.c' object='gtk_win.obj' libtool=no @AMDEPBACKSLASH@
2.2886 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2887 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_win.obj `if test -f 'gtkui/gtk_win.c'; then $(CYGPATH_W) 'gtkui/gtk_win.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_win.c'; fi`
2.2888 -
2.2889 -gtkcb.o: gtkui/gtkcb.c
2.2890 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtkcb.o -MD -MP -MF "$(DEPDIR)/gtkcb.Tpo" -c -o gtkcb.o `test -f 'gtkui/gtkcb.c' || echo '$(srcdir)/'`gtkui/gtkcb.c; \
2.2891 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtkcb.Tpo" "$(DEPDIR)/gtkcb.Po"; else rm -f "$(DEPDIR)/gtkcb.Tpo"; exit 1; fi
2.2892 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkcb.c' object='gtkcb.o' libtool=no @AMDEPBACKSLASH@
2.2893 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2894 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtkcb.o `test -f 'gtkui/gtkcb.c' || echo '$(srcdir)/'`gtkui/gtkcb.c
2.2895 -
2.2896 -gtkcb.obj: gtkui/gtkcb.c
2.2897 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtkcb.obj -MD -MP -MF "$(DEPDIR)/gtkcb.Tpo" -c -o gtkcb.obj `if test -f 'gtkui/gtkcb.c'; then $(CYGPATH_W) 'gtkui/gtkcb.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkcb.c'; fi`; \
2.2898 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtkcb.Tpo" "$(DEPDIR)/gtkcb.Po"; else rm -f "$(DEPDIR)/gtkcb.Tpo"; exit 1; fi
2.2899 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtkcb.c' object='gtkcb.obj' libtool=no @AMDEPBACKSLASH@
2.2900 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2901 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtkcb.obj `if test -f 'gtkui/gtkcb.c'; then $(CYGPATH_W) 'gtkui/gtkcb.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtkcb.c'; fi`
2.2902 -
2.2903 -gtk_cfg.o: gtkui/gtk_cfg.c
2.2904 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_cfg.o -MD -MP -MF "$(DEPDIR)/gtk_cfg.Tpo" -c -o gtk_cfg.o `test -f 'gtkui/gtk_cfg.c' || echo '$(srcdir)/'`gtkui/gtk_cfg.c; \
2.2905 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_cfg.Tpo" "$(DEPDIR)/gtk_cfg.Po"; else rm -f "$(DEPDIR)/gtk_cfg.Tpo"; exit 1; fi
2.2906 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_cfg.c' object='gtk_cfg.o' libtool=no @AMDEPBACKSLASH@
2.2907 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2908 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_cfg.o `test -f 'gtkui/gtk_cfg.c' || echo '$(srcdir)/'`gtkui/gtk_cfg.c
2.2909 -
2.2910 -gtk_cfg.obj: gtkui/gtk_cfg.c
2.2911 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_cfg.obj -MD -MP -MF "$(DEPDIR)/gtk_cfg.Tpo" -c -o gtk_cfg.obj `if test -f 'gtkui/gtk_cfg.c'; then $(CYGPATH_W) 'gtkui/gtk_cfg.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_cfg.c'; fi`; \
2.2912 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_cfg.Tpo" "$(DEPDIR)/gtk_cfg.Po"; else rm -f "$(DEPDIR)/gtk_cfg.Tpo"; exit 1; fi
2.2913 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_cfg.c' object='gtk_cfg.obj' libtool=no @AMDEPBACKSLASH@
2.2914 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2915 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_cfg.obj `if test -f 'gtkui/gtk_cfg.c'; then $(CYGPATH_W) 'gtkui/gtk_cfg.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_cfg.c'; fi`
2.2916 -
2.2917 -gtk_mmio.o: gtkui/gtk_mmio.c
2.2918 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_mmio.o -MD -MP -MF "$(DEPDIR)/gtk_mmio.Tpo" -c -o gtk_mmio.o `test -f 'gtkui/gtk_mmio.c' || echo '$(srcdir)/'`gtkui/gtk_mmio.c; \
2.2919 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_mmio.Tpo" "$(DEPDIR)/gtk_mmio.Po"; else rm -f "$(DEPDIR)/gtk_mmio.Tpo"; exit 1; fi
2.2920 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_mmio.c' object='gtk_mmio.o' libtool=no @AMDEPBACKSLASH@
2.2921 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2922 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_mmio.o `test -f 'gtkui/gtk_mmio.c' || echo '$(srcdir)/'`gtkui/gtk_mmio.c
2.2923 -
2.2924 -gtk_mmio.obj: gtkui/gtk_mmio.c
2.2925 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_mmio.obj -MD -MP -MF "$(DEPDIR)/gtk_mmio.Tpo" -c -o gtk_mmio.obj `if test -f 'gtkui/gtk_mmio.c'; then $(CYGPATH_W) 'gtkui/gtk_mmio.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_mmio.c'; fi`; \
2.2926 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_mmio.Tpo" "$(DEPDIR)/gtk_mmio.Po"; else rm -f "$(DEPDIR)/gtk_mmio.Tpo"; exit 1; fi
2.2927 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_mmio.c' object='gtk_mmio.obj' libtool=no @AMDEPBACKSLASH@
2.2928 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2929 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_mmio.obj `if test -f 'gtkui/gtk_mmio.c'; then $(CYGPATH_W) 'gtkui/gtk_mmio.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_mmio.c'; fi`
2.2930 -
2.2931 -gtk_debug.o: gtkui/gtk_debug.c
2.2932 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_debug.o -MD -MP -MF "$(DEPDIR)/gtk_debug.Tpo" -c -o gtk_debug.o `test -f 'gtkui/gtk_debug.c' || echo '$(srcdir)/'`gtkui/gtk_debug.c; \
2.2933 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_debug.Tpo" "$(DEPDIR)/gtk_debug.Po"; else rm -f "$(DEPDIR)/gtk_debug.Tpo"; exit 1; fi
2.2934 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_debug.c' object='gtk_debug.o' libtool=no @AMDEPBACKSLASH@
2.2935 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2936 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_debug.o `test -f 'gtkui/gtk_debug.c' || echo '$(srcdir)/'`gtkui/gtk_debug.c
2.2937 -
2.2938 -gtk_debug.obj: gtkui/gtk_debug.c
2.2939 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_debug.obj -MD -MP -MF "$(DEPDIR)/gtk_debug.Tpo" -c -o gtk_debug.obj `if test -f 'gtkui/gtk_debug.c'; then $(CYGPATH_W) 'gtkui/gtk_debug.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_debug.c'; fi`; \
2.2940 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_debug.Tpo" "$(DEPDIR)/gtk_debug.Po"; else rm -f "$(DEPDIR)/gtk_debug.Tpo"; exit 1; fi
2.2941 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_debug.c' object='gtk_debug.obj' libtool=no @AMDEPBACKSLASH@
2.2942 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2943 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_debug.obj `if test -f 'gtkui/gtk_debug.c'; then $(CYGPATH_W) 'gtkui/gtk_debug.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_debug.c'; fi`
2.2944 -
2.2945 -gtk_dump.o: gtkui/gtk_dump.c
2.2946 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_dump.o -MD -MP -MF "$(DEPDIR)/gtk_dump.Tpo" -c -o gtk_dump.o `test -f 'gtkui/gtk_dump.c' || echo '$(srcdir)/'`gtkui/gtk_dump.c; \
2.2947 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_dump.Tpo" "$(DEPDIR)/gtk_dump.Po"; else rm -f "$(DEPDIR)/gtk_dump.Tpo"; exit 1; fi
2.2948 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_dump.c' object='gtk_dump.o' libtool=no @AMDEPBACKSLASH@
2.2949 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2950 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_dump.o `test -f 'gtkui/gtk_dump.c' || echo '$(srcdir)/'`gtkui/gtk_dump.c
2.2951 -
2.2952 -gtk_dump.obj: gtkui/gtk_dump.c
2.2953 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_dump.obj -MD -MP -MF "$(DEPDIR)/gtk_dump.Tpo" -c -o gtk_dump.obj `if test -f 'gtkui/gtk_dump.c'; then $(CYGPATH_W) 'gtkui/gtk_dump.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_dump.c'; fi`; \
2.2954 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_dump.Tpo" "$(DEPDIR)/gtk_dump.Po"; else rm -f "$(DEPDIR)/gtk_dump.Tpo"; exit 1; fi
2.2955 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_dump.c' object='gtk_dump.obj' libtool=no @AMDEPBACKSLASH@
2.2956 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2957 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_dump.obj `if test -f 'gtkui/gtk_dump.c'; then $(CYGPATH_W) 'gtkui/gtk_dump.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_dump.c'; fi`
2.2958 -
2.2959 -gtk_ctrl.o: gtkui/gtk_ctrl.c
2.2960 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_ctrl.o -MD -MP -MF "$(DEPDIR)/gtk_ctrl.Tpo" -c -o gtk_ctrl.o `test -f 'gtkui/gtk_ctrl.c' || echo '$(srcdir)/'`gtkui/gtk_ctrl.c; \
2.2961 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_ctrl.Tpo" "$(DEPDIR)/gtk_ctrl.Po"; else rm -f "$(DEPDIR)/gtk_ctrl.Tpo"; exit 1; fi
2.2962 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_ctrl.c' object='gtk_ctrl.o' libtool=no @AMDEPBACKSLASH@
2.2963 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2964 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_ctrl.o `test -f 'gtkui/gtk_ctrl.c' || echo '$(srcdir)/'`gtkui/gtk_ctrl.c
2.2965 -
2.2966 -gtk_ctrl.obj: gtkui/gtk_ctrl.c
2.2967 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_ctrl.obj -MD -MP -MF "$(DEPDIR)/gtk_ctrl.Tpo" -c -o gtk_ctrl.obj `if test -f 'gtkui/gtk_ctrl.c'; then $(CYGPATH_W) 'gtkui/gtk_ctrl.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_ctrl.c'; fi`; \
2.2968 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_ctrl.Tpo" "$(DEPDIR)/gtk_ctrl.Po"; else rm -f "$(DEPDIR)/gtk_ctrl.Tpo"; exit 1; fi
2.2969 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_ctrl.c' object='gtk_ctrl.obj' libtool=no @AMDEPBACKSLASH@
2.2970 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2971 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_ctrl.obj `if test -f 'gtkui/gtk_ctrl.c'; then $(CYGPATH_W) 'gtkui/gtk_ctrl.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_ctrl.c'; fi`
2.2972 -
2.2973 -gtk_gd.o: gtkui/gtk_gd.c
2.2974 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_gd.o -MD -MP -MF "$(DEPDIR)/gtk_gd.Tpo" -c -o gtk_gd.o `test -f 'gtkui/gtk_gd.c' || echo '$(srcdir)/'`gtkui/gtk_gd.c; \
2.2975 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_gd.Tpo" "$(DEPDIR)/gtk_gd.Po"; else rm -f "$(DEPDIR)/gtk_gd.Tpo"; exit 1; fi
2.2976 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_gd.c' object='gtk_gd.o' libtool=no @AMDEPBACKSLASH@
2.2977 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2978 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_gd.o `test -f 'gtkui/gtk_gd.c' || echo '$(srcdir)/'`gtkui/gtk_gd.c
2.2979 -
2.2980 -gtk_gd.obj: gtkui/gtk_gd.c
2.2981 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gtk_gd.obj -MD -MP -MF "$(DEPDIR)/gtk_gd.Tpo" -c -o gtk_gd.obj `if test -f 'gtkui/gtk_gd.c'; then $(CYGPATH_W) 'gtkui/gtk_gd.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_gd.c'; fi`; \
2.2982 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gtk_gd.Tpo" "$(DEPDIR)/gtk_gd.Po"; else rm -f "$(DEPDIR)/gtk_gd.Tpo"; exit 1; fi
2.2983 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gtkui/gtk_gd.c' object='gtk_gd.obj' libtool=no @AMDEPBACKSLASH@
2.2984 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2985 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gtk_gd.obj `if test -f 'gtkui/gtk_gd.c'; then $(CYGPATH_W) 'gtkui/gtk_gd.c'; else $(CYGPATH_W) '$(srcdir)/gtkui/gtk_gd.c'; fi`
2.2986 -
2.2987 -video_gtk.o: drivers/video_gtk.c
2.2988 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gtk.o -MD -MP -MF "$(DEPDIR)/video_gtk.Tpo" -c -o video_gtk.o `test -f 'drivers/video_gtk.c' || echo '$(srcdir)/'`drivers/video_gtk.c; \
2.2989 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gtk.Tpo" "$(DEPDIR)/video_gtk.Po"; else rm -f "$(DEPDIR)/video_gtk.Tpo"; exit 1; fi
2.2990 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gtk.c' object='video_gtk.o' libtool=no @AMDEPBACKSLASH@
2.2991 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2992 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gtk.o `test -f 'drivers/video_gtk.c' || echo '$(srcdir)/'`drivers/video_gtk.c
2.2993 -
2.2994 -video_gtk.obj: drivers/video_gtk.c
2.2995 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gtk.obj -MD -MP -MF "$(DEPDIR)/video_gtk.Tpo" -c -o video_gtk.obj `if test -f 'drivers/video_gtk.c'; then $(CYGPATH_W) 'drivers/video_gtk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gtk.c'; fi`; \
2.2996 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gtk.Tpo" "$(DEPDIR)/video_gtk.Po"; else rm -f "$(DEPDIR)/video_gtk.Tpo"; exit 1; fi
2.2997 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gtk.c' object='video_gtk.obj' libtool=no @AMDEPBACKSLASH@
2.2998 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.2999 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gtk.obj `if test -f 'drivers/video_gtk.c'; then $(CYGPATH_W) 'drivers/video_gtk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gtk.c'; fi`
2.3000 -
2.3001 -video_gdk.o: drivers/video_gdk.c
2.3002 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gdk.o -MD -MP -MF "$(DEPDIR)/video_gdk.Tpo" -c -o video_gdk.o `test -f 'drivers/video_gdk.c' || echo '$(srcdir)/'`drivers/video_gdk.c; \
2.3003 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gdk.Tpo" "$(DEPDIR)/video_gdk.Po"; else rm -f "$(DEPDIR)/video_gdk.Tpo"; exit 1; fi
2.3004 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gdk.c' object='video_gdk.o' libtool=no @AMDEPBACKSLASH@
2.3005 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3006 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gdk.o `test -f 'drivers/video_gdk.c' || echo '$(srcdir)/'`drivers/video_gdk.c
2.3007 -
2.3008 -video_gdk.obj: drivers/video_gdk.c
2.3009 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_gdk.obj -MD -MP -MF "$(DEPDIR)/video_gdk.Tpo" -c -o video_gdk.obj `if test -f 'drivers/video_gdk.c'; then $(CYGPATH_W) 'drivers/video_gdk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gdk.c'; fi`; \
2.3010 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_gdk.Tpo" "$(DEPDIR)/video_gdk.Po"; else rm -f "$(DEPDIR)/video_gdk.Tpo"; exit 1; fi
2.3011 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_gdk.c' object='video_gdk.obj' libtool=no @AMDEPBACKSLASH@
2.3012 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3013 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_gdk.obj `if test -f 'drivers/video_gdk.c'; then $(CYGPATH_W) 'drivers/video_gdk.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_gdk.c'; fi`
2.3014 -
2.3015 -video_glx.o: drivers/video_glx.c
2.3016 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_glx.o -MD -MP -MF "$(DEPDIR)/video_glx.Tpo" -c -o video_glx.o `test -f 'drivers/video_glx.c' || echo '$(srcdir)/'`drivers/video_glx.c; \
2.3017 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_glx.Tpo" "$(DEPDIR)/video_glx.Po"; else rm -f "$(DEPDIR)/video_glx.Tpo"; exit 1; fi
2.3018 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_glx.c' object='video_glx.o' libtool=no @AMDEPBACKSLASH@
2.3019 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3020 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_glx.o `test -f 'drivers/video_glx.c' || echo '$(srcdir)/'`drivers/video_glx.c
2.3021 -
2.3022 -video_glx.obj: drivers/video_glx.c
2.3023 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT video_glx.obj -MD -MP -MF "$(DEPDIR)/video_glx.Tpo" -c -o video_glx.obj `if test -f 'drivers/video_glx.c'; then $(CYGPATH_W) 'drivers/video_glx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_glx.c'; fi`; \
2.3024 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/video_glx.Tpo" "$(DEPDIR)/video_glx.Po"; else rm -f "$(DEPDIR)/video_glx.Tpo"; exit 1; fi
2.3025 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/video_glx.c' object='video_glx.obj' libtool=no @AMDEPBACKSLASH@
2.3026 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3027 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o video_glx.obj `if test -f 'drivers/video_glx.c'; then $(CYGPATH_W) 'drivers/video_glx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/video_glx.c'; fi`
2.3028 -
2.3029 -audio_sdl.o: drivers/audio_sdl.c
2.3030 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_sdl.o -MD -MP -MF "$(DEPDIR)/audio_sdl.Tpo" -c -o audio_sdl.o `test -f 'drivers/audio_sdl.c' || echo '$(srcdir)/'`drivers/audio_sdl.c; \
2.3031 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_sdl.Tpo" "$(DEPDIR)/audio_sdl.Po"; else rm -f "$(DEPDIR)/audio_sdl.Tpo"; exit 1; fi
2.3032 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_sdl.c' object='audio_sdl.o' libtool=no @AMDEPBACKSLASH@
2.3033 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3034 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_sdl.o `test -f 'drivers/audio_sdl.c' || echo '$(srcdir)/'`drivers/audio_sdl.c
2.3035 -
2.3036 -audio_sdl.obj: drivers/audio_sdl.c
2.3037 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_sdl.obj -MD -MP -MF "$(DEPDIR)/audio_sdl.Tpo" -c -o audio_sdl.obj `if test -f 'drivers/audio_sdl.c'; then $(CYGPATH_W) 'drivers/audio_sdl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_sdl.c'; fi`; \
2.3038 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_sdl.Tpo" "$(DEPDIR)/audio_sdl.Po"; else rm -f "$(DEPDIR)/audio_sdl.Tpo"; exit 1; fi
2.3039 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_sdl.c' object='audio_sdl.obj' libtool=no @AMDEPBACKSLASH@
2.3040 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3041 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_sdl.obj `if test -f 'drivers/audio_sdl.c'; then $(CYGPATH_W) 'drivers/audio_sdl.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_sdl.c'; fi`
2.3042 -
2.3043 -audio_pulse.o: drivers/audio_pulse.c
2.3044 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_pulse.o -MD -MP -MF "$(DEPDIR)/audio_pulse.Tpo" -c -o audio_pulse.o `test -f 'drivers/audio_pulse.c' || echo '$(srcdir)/'`drivers/audio_pulse.c; \
2.3045 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_pulse.Tpo" "$(DEPDIR)/audio_pulse.Po"; else rm -f "$(DEPDIR)/audio_pulse.Tpo"; exit 1; fi
2.3046 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_pulse.c' object='audio_pulse.o' libtool=no @AMDEPBACKSLASH@
2.3047 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3048 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_pulse.o `test -f 'drivers/audio_pulse.c' || echo '$(srcdir)/'`drivers/audio_pulse.c
2.3049 -
2.3050 -audio_pulse.obj: drivers/audio_pulse.c
2.3051 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_pulse.obj -MD -MP -MF "$(DEPDIR)/audio_pulse.Tpo" -c -o audio_pulse.obj `if test -f 'drivers/audio_pulse.c'; then $(CYGPATH_W) 'drivers/audio_pulse.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_pulse.c'; fi`; \
2.3052 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_pulse.Tpo" "$(DEPDIR)/audio_pulse.Po"; else rm -f "$(DEPDIR)/audio_pulse.Tpo"; exit 1; fi
2.3053 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_pulse.c' object='audio_pulse.obj' libtool=no @AMDEPBACKSLASH@
2.3054 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3055 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_pulse.obj `if test -f 'drivers/audio_pulse.c'; then $(CYGPATH_W) 'drivers/audio_pulse.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_pulse.c'; fi`
2.3056 -
2.3057 -audio_esd.o: drivers/audio_esd.c
2.3058 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_esd.o -MD -MP -MF "$(DEPDIR)/audio_esd.Tpo" -c -o audio_esd.o `test -f 'drivers/audio_esd.c' || echo '$(srcdir)/'`drivers/audio_esd.c; \
2.3059 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_esd.Tpo" "$(DEPDIR)/audio_esd.Po"; else rm -f "$(DEPDIR)/audio_esd.Tpo"; exit 1; fi
2.3060 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_esd.c' object='audio_esd.o' libtool=no @AMDEPBACKSLASH@
2.3061 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3062 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_esd.o `test -f 'drivers/audio_esd.c' || echo '$(srcdir)/'`drivers/audio_esd.c
2.3063 -
2.3064 -audio_esd.obj: drivers/audio_esd.c
2.3065 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_esd.obj -MD -MP -MF "$(DEPDIR)/audio_esd.Tpo" -c -o audio_esd.obj `if test -f 'drivers/audio_esd.c'; then $(CYGPATH_W) 'drivers/audio_esd.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_esd.c'; fi`; \
2.3066 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_esd.Tpo" "$(DEPDIR)/audio_esd.Po"; else rm -f "$(DEPDIR)/audio_esd.Tpo"; exit 1; fi
2.3067 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_esd.c' object='audio_esd.obj' libtool=no @AMDEPBACKSLASH@
2.3068 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3069 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_esd.obj `if test -f 'drivers/audio_esd.c'; then $(CYGPATH_W) 'drivers/audio_esd.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_esd.c'; fi`
2.3070 -
2.3071 -audio_alsa.o: drivers/audio_alsa.c
2.3072 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_alsa.o -MD -MP -MF "$(DEPDIR)/audio_alsa.Tpo" -c -o audio_alsa.o `test -f 'drivers/audio_alsa.c' || echo '$(srcdir)/'`drivers/audio_alsa.c; \
2.3073 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_alsa.Tpo" "$(DEPDIR)/audio_alsa.Po"; else rm -f "$(DEPDIR)/audio_alsa.Tpo"; exit 1; fi
2.3074 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_alsa.c' object='audio_alsa.o' libtool=no @AMDEPBACKSLASH@
2.3075 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3076 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_alsa.o `test -f 'drivers/audio_alsa.c' || echo '$(srcdir)/'`drivers/audio_alsa.c
2.3077 -
2.3078 -audio_alsa.obj: drivers/audio_alsa.c
2.3079 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_alsa.obj -MD -MP -MF "$(DEPDIR)/audio_alsa.Tpo" -c -o audio_alsa.obj `if test -f 'drivers/audio_alsa.c'; then $(CYGPATH_W) 'drivers/audio_alsa.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_alsa.c'; fi`; \
2.3080 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_alsa.Tpo" "$(DEPDIR)/audio_alsa.Po"; else rm -f "$(DEPDIR)/audio_alsa.Tpo"; exit 1; fi
2.3081 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/audio_alsa.c' object='audio_alsa.obj' libtool=no @AMDEPBACKSLASH@
2.3082 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3083 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_alsa.obj `if test -f 'drivers/audio_alsa.c'; then $(CYGPATH_W) 'drivers/audio_alsa.c'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_alsa.c'; fi`
2.3084 -
2.3085 -input_lirc.o: drivers/input_lirc.c
2.3086 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT input_lirc.o -MD -MP -MF "$(DEPDIR)/input_lirc.Tpo" -c -o input_lirc.o `test -f 'drivers/input_lirc.c' || echo '$(srcdir)/'`drivers/input_lirc.c; \
2.3087 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/input_lirc.Tpo" "$(DEPDIR)/input_lirc.Po"; else rm -f "$(DEPDIR)/input_lirc.Tpo"; exit 1; fi
2.3088 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/input_lirc.c' object='input_lirc.o' libtool=no @AMDEPBACKSLASH@
2.3089 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3090 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o input_lirc.o `test -f 'drivers/input_lirc.c' || echo '$(srcdir)/'`drivers/input_lirc.c
2.3091 -
2.3092 -input_lirc.obj: drivers/input_lirc.c
2.3093 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT input_lirc.obj -MD -MP -MF "$(DEPDIR)/input_lirc.Tpo" -c -o input_lirc.obj `if test -f 'drivers/input_lirc.c'; then $(CYGPATH_W) 'drivers/input_lirc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/input_lirc.c'; fi`; \
2.3094 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/input_lirc.Tpo" "$(DEPDIR)/input_lirc.Po"; else rm -f "$(DEPDIR)/input_lirc.Tpo"; exit 1; fi
2.3095 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/input_lirc.c' object='input_lirc.obj' libtool=no @AMDEPBACKSLASH@
2.3096 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3097 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o input_lirc.obj `if test -f 'drivers/input_lirc.c'; then $(CYGPATH_W) 'drivers/input_lirc.c'; else $(CYGPATH_W) '$(srcdir)/drivers/input_lirc.c'; fi`
2.3098 -
2.3099 -cd_linux.o: drivers/cdrom/cd_linux.c
2.3100 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_linux.o -MD -MP -MF "$(DEPDIR)/cd_linux.Tpo" -c -o cd_linux.o `test -f 'drivers/cdrom/cd_linux.c' || echo '$(srcdir)/'`drivers/cdrom/cd_linux.c; \
2.3101 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_linux.Tpo" "$(DEPDIR)/cd_linux.Po"; else rm -f "$(DEPDIR)/cd_linux.Tpo"; exit 1; fi
2.3102 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_linux.c' object='cd_linux.o' libtool=no @AMDEPBACKSLASH@
2.3103 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3104 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_linux.o `test -f 'drivers/cdrom/cd_linux.c' || echo '$(srcdir)/'`drivers/cdrom/cd_linux.c
2.3105 -
2.3106 -cd_linux.obj: drivers/cdrom/cd_linux.c
2.3107 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_linux.obj -MD -MP -MF "$(DEPDIR)/cd_linux.Tpo" -c -o cd_linux.obj `if test -f 'drivers/cdrom/cd_linux.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_linux.c'; fi`; \
2.3108 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_linux.Tpo" "$(DEPDIR)/cd_linux.Po"; else rm -f "$(DEPDIR)/cd_linux.Tpo"; exit 1; fi
2.3109 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_linux.c' object='cd_linux.obj' libtool=no @AMDEPBACKSLASH@
2.3110 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3111 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_linux.obj `if test -f 'drivers/cdrom/cd_linux.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_linux.c'; fi`
2.3112 -
2.3113 -cd_osx.o: drivers/cdrom/cd_osx.c
2.3114 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_osx.o -MD -MP -MF "$(DEPDIR)/cd_osx.Tpo" -c -o cd_osx.o `test -f 'drivers/cdrom/cd_osx.c' || echo '$(srcdir)/'`drivers/cdrom/cd_osx.c; \
2.3115 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_osx.Tpo" "$(DEPDIR)/cd_osx.Po"; else rm -f "$(DEPDIR)/cd_osx.Tpo"; exit 1; fi
2.3116 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_osx.c' object='cd_osx.o' libtool=no @AMDEPBACKSLASH@
2.3117 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3118 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_osx.o `test -f 'drivers/cdrom/cd_osx.c' || echo '$(srcdir)/'`drivers/cdrom/cd_osx.c
2.3119 -
2.3120 -cd_osx.obj: drivers/cdrom/cd_osx.c
2.3121 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cd_osx.obj -MD -MP -MF "$(DEPDIR)/cd_osx.Tpo" -c -o cd_osx.obj `if test -f 'drivers/cdrom/cd_osx.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_osx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_osx.c'; fi`; \
2.3122 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/cd_osx.Tpo" "$(DEPDIR)/cd_osx.Po"; else rm -f "$(DEPDIR)/cd_osx.Tpo"; exit 1; fi
2.3123 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/cdrom/cd_osx.c' object='cd_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3124 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3125 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cd_osx.obj `if test -f 'drivers/cdrom/cd_osx.c'; then $(CYGPATH_W) 'drivers/cdrom/cd_osx.c'; else $(CYGPATH_W) '$(srcdir)/drivers/cdrom/cd_osx.c'; fi`
2.3126 -
2.3127 -joy_linux.o: drivers/joy_linux.c
2.3128 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT joy_linux.o -MD -MP -MF "$(DEPDIR)/joy_linux.Tpo" -c -o joy_linux.o `test -f 'drivers/joy_linux.c' || echo '$(srcdir)/'`drivers/joy_linux.c; \
2.3129 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/joy_linux.Tpo" "$(DEPDIR)/joy_linux.Po"; else rm -f "$(DEPDIR)/joy_linux.Tpo"; exit 1; fi
2.3130 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/joy_linux.c' object='joy_linux.o' libtool=no @AMDEPBACKSLASH@
2.3131 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3132 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o joy_linux.o `test -f 'drivers/joy_linux.c' || echo '$(srcdir)/'`drivers/joy_linux.c
2.3133 -
2.3134 -joy_linux.obj: drivers/joy_linux.c
2.3135 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT joy_linux.obj -MD -MP -MF "$(DEPDIR)/joy_linux.Tpo" -c -o joy_linux.obj `if test -f 'drivers/joy_linux.c'; then $(CYGPATH_W) 'drivers/joy_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/joy_linux.c'; fi`; \
2.3136 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/joy_linux.Tpo" "$(DEPDIR)/joy_linux.Po"; else rm -f "$(DEPDIR)/joy_linux.Tpo"; exit 1; fi
2.3137 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='drivers/joy_linux.c' object='joy_linux.obj' libtool=no @AMDEPBACKSLASH@
2.3138 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3139 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o joy_linux.obj `if test -f 'drivers/joy_linux.c'; then $(CYGPATH_W) 'drivers/joy_linux.c'; else $(CYGPATH_W) '$(srcdir)/drivers/joy_linux.c'; fi`
2.3140 -
2.3141 -testlxpaths.o: test/testlxpaths.c
2.3142 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlxpaths.o -MD -MP -MF "$(DEPDIR)/testlxpaths.Tpo" -c -o testlxpaths.o `test -f 'test/testlxpaths.c' || echo '$(srcdir)/'`test/testlxpaths.c; \
2.3143 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testlxpaths.Tpo" "$(DEPDIR)/testlxpaths.Po"; else rm -f "$(DEPDIR)/testlxpaths.Tpo"; exit 1; fi
2.3144 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testlxpaths.c' object='testlxpaths.o' libtool=no @AMDEPBACKSLASH@
2.3145 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3146 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlxpaths.o `test -f 'test/testlxpaths.c' || echo '$(srcdir)/'`test/testlxpaths.c
2.3147 -
2.3148 -testlxpaths.obj: test/testlxpaths.c
2.3149 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlxpaths.obj -MD -MP -MF "$(DEPDIR)/testlxpaths.Tpo" -c -o testlxpaths.obj `if test -f 'test/testlxpaths.c'; then $(CYGPATH_W) 'test/testlxpaths.c'; else $(CYGPATH_W) '$(srcdir)/test/testlxpaths.c'; fi`; \
2.3150 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testlxpaths.Tpo" "$(DEPDIR)/testlxpaths.Po"; else rm -f "$(DEPDIR)/testlxpaths.Tpo"; exit 1; fi
2.3151 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testlxpaths.c' object='testlxpaths.obj' libtool=no @AMDEPBACKSLASH@
2.3152 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3153 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlxpaths.obj `if test -f 'test/testlxpaths.c'; then $(CYGPATH_W) 'test/testlxpaths.c'; else $(CYGPATH_W) '$(srcdir)/test/testlxpaths.c'; fi`
2.3154 -
2.3155 -testsh4x86.o: test/testsh4x86.c
2.3156 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testsh4x86.o -MD -MP -MF "$(DEPDIR)/testsh4x86.Tpo" -c -o testsh4x86.o `test -f 'test/testsh4x86.c' || echo '$(srcdir)/'`test/testsh4x86.c; \
2.3157 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testsh4x86.Tpo" "$(DEPDIR)/testsh4x86.Po"; else rm -f "$(DEPDIR)/testsh4x86.Tpo"; exit 1; fi
2.3158 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testsh4x86.c' object='testsh4x86.o' libtool=no @AMDEPBACKSLASH@
2.3159 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3160 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testsh4x86.o `test -f 'test/testsh4x86.c' || echo '$(srcdir)/'`test/testsh4x86.c
2.3161 -
2.3162 -testsh4x86.obj: test/testsh4x86.c
2.3163 -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testsh4x86.obj -MD -MP -MF "$(DEPDIR)/testsh4x86.Tpo" -c -o testsh4x86.obj `if test -f 'test/testsh4x86.c'; then $(CYGPATH_W) 'test/testsh4x86.c'; else $(CYGPATH_W) '$(srcdir)/test/testsh4x86.c'; fi`; \
2.3164 -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/testsh4x86.Tpo" "$(DEPDIR)/testsh4x86.Po"; else rm -f "$(DEPDIR)/testsh4x86.Tpo"; exit 1; fi
2.3165 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/testsh4x86.c' object='testsh4x86.obj' libtool=no @AMDEPBACKSLASH@
2.3166 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3167 -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testsh4x86.obj `if test -f 'test/testsh4x86.c'; then $(CYGPATH_W) 'test/testsh4x86.c'; else $(CYGPATH_W) '$(srcdir)/test/testsh4x86.c'; fi`
2.3168 +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sh4dasm.obj `if test -f 'sh4/sh4dasm.c'; then $(CYGPATH_W) 'sh4/sh4dasm.c'; else $(CYGPATH_W) '$(srcdir)/sh4/sh4dasm.c'; fi`
2.3169
2.3170 testxlt.o: test/testxlt.c
2.3171 @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testxlt.o -MD -MP -MF "$(DEPDIR)/testxlt.Tpo" -c -o testxlt.o `test -f 'test/testxlt.c' || echo '$(srcdir)/'`test/testxlt.c; \
2.3172 @@ -2210,173 +2778,173 @@
2.3173 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3174 @am__fastdepOBJC_FALSE@ $(OBJCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
2.3175
2.3176 -paths_osx.o: cocoaui/paths_osx.m
2.3177 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT paths_osx.o -MD -MP -MF "$(DEPDIR)/paths_osx.Tpo" -c -o paths_osx.o `test -f 'cocoaui/paths_osx.m' || echo '$(srcdir)/'`cocoaui/paths_osx.m; \
2.3178 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/paths_osx.Tpo" "$(DEPDIR)/paths_osx.Po"; else rm -f "$(DEPDIR)/paths_osx.Tpo"; exit 1; fi
2.3179 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/paths_osx.m' object='paths_osx.o' libtool=no @AMDEPBACKSLASH@
2.3180 +liblxdream_core_a-paths_osx.o: cocoaui/paths_osx.m
2.3181 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT liblxdream_core_a-paths_osx.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo" -c -o liblxdream_core_a-paths_osx.o `test -f 'cocoaui/paths_osx.m' || echo '$(srcdir)/'`cocoaui/paths_osx.m; \
2.3182 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo" "$(DEPDIR)/liblxdream_core_a-paths_osx.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo"; exit 1; fi
2.3183 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/paths_osx.m' object='liblxdream_core_a-paths_osx.o' libtool=no @AMDEPBACKSLASH@
2.3184 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3185 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o paths_osx.o `test -f 'cocoaui/paths_osx.m' || echo '$(srcdir)/'`cocoaui/paths_osx.m
2.3186 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o liblxdream_core_a-paths_osx.o `test -f 'cocoaui/paths_osx.m' || echo '$(srcdir)/'`cocoaui/paths_osx.m
2.3187
2.3188 -paths_osx.obj: cocoaui/paths_osx.m
2.3189 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT paths_osx.obj -MD -MP -MF "$(DEPDIR)/paths_osx.Tpo" -c -o paths_osx.obj `if test -f 'cocoaui/paths_osx.m'; then $(CYGPATH_W) 'cocoaui/paths_osx.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/paths_osx.m'; fi`; \
2.3190 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/paths_osx.Tpo" "$(DEPDIR)/paths_osx.Po"; else rm -f "$(DEPDIR)/paths_osx.Tpo"; exit 1; fi
2.3191 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/paths_osx.m' object='paths_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3192 +liblxdream_core_a-paths_osx.obj: cocoaui/paths_osx.m
2.3193 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT liblxdream_core_a-paths_osx.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo" -c -o liblxdream_core_a-paths_osx.obj `if test -f 'cocoaui/paths_osx.m'; then $(CYGPATH_W) 'cocoaui/paths_osx.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/paths_osx.m'; fi`; \
2.3194 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo" "$(DEPDIR)/liblxdream_core_a-paths_osx.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-paths_osx.Tpo"; exit 1; fi
2.3195 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/paths_osx.m' object='liblxdream_core_a-paths_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3196 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3197 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o paths_osx.obj `if test -f 'cocoaui/paths_osx.m'; then $(CYGPATH_W) 'cocoaui/paths_osx.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/paths_osx.m'; fi`
2.3198 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o liblxdream_core_a-paths_osx.obj `if test -f 'cocoaui/paths_osx.m'; then $(CYGPATH_W) 'cocoaui/paths_osx.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/paths_osx.m'; fi`
2.3199
2.3200 -io_osx.o: drivers/io_osx.m
2.3201 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT io_osx.o -MD -MP -MF "$(DEPDIR)/io_osx.Tpo" -c -o io_osx.o `test -f 'drivers/io_osx.m' || echo '$(srcdir)/'`drivers/io_osx.m; \
2.3202 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/io_osx.Tpo" "$(DEPDIR)/io_osx.Po"; else rm -f "$(DEPDIR)/io_osx.Tpo"; exit 1; fi
2.3203 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/io_osx.m' object='io_osx.o' libtool=no @AMDEPBACKSLASH@
2.3204 +liblxdream_core_a-io_osx.o: drivers/io_osx.m
2.3205 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT liblxdream_core_a-io_osx.o -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo" -c -o liblxdream_core_a-io_osx.o `test -f 'drivers/io_osx.m' || echo '$(srcdir)/'`drivers/io_osx.m; \
2.3206 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo" "$(DEPDIR)/liblxdream_core_a-io_osx.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo"; exit 1; fi
2.3207 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/io_osx.m' object='liblxdream_core_a-io_osx.o' libtool=no @AMDEPBACKSLASH@
2.3208 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3209 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o io_osx.o `test -f 'drivers/io_osx.m' || echo '$(srcdir)/'`drivers/io_osx.m
2.3210 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o liblxdream_core_a-io_osx.o `test -f 'drivers/io_osx.m' || echo '$(srcdir)/'`drivers/io_osx.m
2.3211
2.3212 -io_osx.obj: drivers/io_osx.m
2.3213 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT io_osx.obj -MD -MP -MF "$(DEPDIR)/io_osx.Tpo" -c -o io_osx.obj `if test -f 'drivers/io_osx.m'; then $(CYGPATH_W) 'drivers/io_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/io_osx.m'; fi`; \
2.3214 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/io_osx.Tpo" "$(DEPDIR)/io_osx.Po"; else rm -f "$(DEPDIR)/io_osx.Tpo"; exit 1; fi
2.3215 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/io_osx.m' object='io_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3216 +liblxdream_core_a-io_osx.obj: drivers/io_osx.m
2.3217 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT liblxdream_core_a-io_osx.obj -MD -MP -MF "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo" -c -o liblxdream_core_a-io_osx.obj `if test -f 'drivers/io_osx.m'; then $(CYGPATH_W) 'drivers/io_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/io_osx.m'; fi`; \
2.3218 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo" "$(DEPDIR)/liblxdream_core_a-io_osx.Po"; else rm -f "$(DEPDIR)/liblxdream_core_a-io_osx.Tpo"; exit 1; fi
2.3219 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/io_osx.m' object='liblxdream_core_a-io_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3220 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3221 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o io_osx.obj `if test -f 'drivers/io_osx.m'; then $(CYGPATH_W) 'drivers/io_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/io_osx.m'; fi`
2.3222 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblxdream_core_a_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o liblxdream_core_a-io_osx.obj `if test -f 'drivers/io_osx.m'; then $(CYGPATH_W) 'drivers/io_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/io_osx.m'; fi`
2.3223
2.3224 -cocoaui.o: cocoaui/cocoaui.m
2.3225 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoaui.o -MD -MP -MF "$(DEPDIR)/cocoaui.Tpo" -c -o cocoaui.o `test -f 'cocoaui/cocoaui.m' || echo '$(srcdir)/'`cocoaui/cocoaui.m; \
2.3226 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoaui.Tpo" "$(DEPDIR)/cocoaui.Po"; else rm -f "$(DEPDIR)/cocoaui.Tpo"; exit 1; fi
2.3227 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoaui.m' object='cocoaui.o' libtool=no @AMDEPBACKSLASH@
2.3228 +lxdream-cocoaui.o: cocoaui/cocoaui.m
2.3229 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoaui.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoaui.Tpo" -c -o lxdream-cocoaui.o `test -f 'cocoaui/cocoaui.m' || echo '$(srcdir)/'`cocoaui/cocoaui.m; \
2.3230 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoaui.Tpo" "$(DEPDIR)/lxdream-cocoaui.Po"; else rm -f "$(DEPDIR)/lxdream-cocoaui.Tpo"; exit 1; fi
2.3231 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoaui.m' object='lxdream-cocoaui.o' libtool=no @AMDEPBACKSLASH@
2.3232 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3233 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoaui.o `test -f 'cocoaui/cocoaui.m' || echo '$(srcdir)/'`cocoaui/cocoaui.m
2.3234 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoaui.o `test -f 'cocoaui/cocoaui.m' || echo '$(srcdir)/'`cocoaui/cocoaui.m
2.3235
2.3236 -cocoaui.obj: cocoaui/cocoaui.m
2.3237 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoaui.obj -MD -MP -MF "$(DEPDIR)/cocoaui.Tpo" -c -o cocoaui.obj `if test -f 'cocoaui/cocoaui.m'; then $(CYGPATH_W) 'cocoaui/cocoaui.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoaui.m'; fi`; \
2.3238 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoaui.Tpo" "$(DEPDIR)/cocoaui.Po"; else rm -f "$(DEPDIR)/cocoaui.Tpo"; exit 1; fi
2.3239 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoaui.m' object='cocoaui.obj' libtool=no @AMDEPBACKSLASH@
2.3240 +lxdream-cocoaui.obj: cocoaui/cocoaui.m
2.3241 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoaui.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoaui.Tpo" -c -o lxdream-cocoaui.obj `if test -f 'cocoaui/cocoaui.m'; then $(CYGPATH_W) 'cocoaui/cocoaui.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoaui.m'; fi`; \
2.3242 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoaui.Tpo" "$(DEPDIR)/lxdream-cocoaui.Po"; else rm -f "$(DEPDIR)/lxdream-cocoaui.Tpo"; exit 1; fi
2.3243 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoaui.m' object='lxdream-cocoaui.obj' libtool=no @AMDEPBACKSLASH@
2.3244 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3245 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoaui.obj `if test -f 'cocoaui/cocoaui.m'; then $(CYGPATH_W) 'cocoaui/cocoaui.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoaui.m'; fi`
2.3246 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoaui.obj `if test -f 'cocoaui/cocoaui.m'; then $(CYGPATH_W) 'cocoaui/cocoaui.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoaui.m'; fi`
2.3247
2.3248 -cocoa_cfg.o: cocoaui/cocoa_cfg.m
2.3249 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_cfg.o -MD -MP -MF "$(DEPDIR)/cocoa_cfg.Tpo" -c -o cocoa_cfg.o `test -f 'cocoaui/cocoa_cfg.m' || echo '$(srcdir)/'`cocoaui/cocoa_cfg.m; \
2.3250 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_cfg.Tpo" "$(DEPDIR)/cocoa_cfg.Po"; else rm -f "$(DEPDIR)/cocoa_cfg.Tpo"; exit 1; fi
2.3251 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_cfg.m' object='cocoa_cfg.o' libtool=no @AMDEPBACKSLASH@
2.3252 +lxdream-cocoa_cfg.o: cocoaui/cocoa_cfg.m
2.3253 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_cfg.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_cfg.Tpo" -c -o lxdream-cocoa_cfg.o `test -f 'cocoaui/cocoa_cfg.m' || echo '$(srcdir)/'`cocoaui/cocoa_cfg.m; \
2.3254 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_cfg.Tpo" "$(DEPDIR)/lxdream-cocoa_cfg.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_cfg.Tpo"; exit 1; fi
2.3255 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_cfg.m' object='lxdream-cocoa_cfg.o' libtool=no @AMDEPBACKSLASH@
2.3256 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3257 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_cfg.o `test -f 'cocoaui/cocoa_cfg.m' || echo '$(srcdir)/'`cocoaui/cocoa_cfg.m
2.3258 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_cfg.o `test -f 'cocoaui/cocoa_cfg.m' || echo '$(srcdir)/'`cocoaui/cocoa_cfg.m
2.3259
2.3260 -cocoa_cfg.obj: cocoaui/cocoa_cfg.m
2.3261 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_cfg.obj -MD -MP -MF "$(DEPDIR)/cocoa_cfg.Tpo" -c -o cocoa_cfg.obj `if test -f 'cocoaui/cocoa_cfg.m'; then $(CYGPATH_W) 'cocoaui/cocoa_cfg.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_cfg.m'; fi`; \
2.3262 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_cfg.Tpo" "$(DEPDIR)/cocoa_cfg.Po"; else rm -f "$(DEPDIR)/cocoa_cfg.Tpo"; exit 1; fi
2.3263 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_cfg.m' object='cocoa_cfg.obj' libtool=no @AMDEPBACKSLASH@
2.3264 +lxdream-cocoa_cfg.obj: cocoaui/cocoa_cfg.m
2.3265 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_cfg.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_cfg.Tpo" -c -o lxdream-cocoa_cfg.obj `if test -f 'cocoaui/cocoa_cfg.m'; then $(CYGPATH_W) 'cocoaui/cocoa_cfg.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_cfg.m'; fi`; \
2.3266 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_cfg.Tpo" "$(DEPDIR)/lxdream-cocoa_cfg.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_cfg.Tpo"; exit 1; fi
2.3267 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_cfg.m' object='lxdream-cocoa_cfg.obj' libtool=no @AMDEPBACKSLASH@
2.3268 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3269 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_cfg.obj `if test -f 'cocoaui/cocoa_cfg.m'; then $(CYGPATH_W) 'cocoaui/cocoa_cfg.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_cfg.m'; fi`
2.3270 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_cfg.obj `if test -f 'cocoaui/cocoa_cfg.m'; then $(CYGPATH_W) 'cocoaui/cocoa_cfg.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_cfg.m'; fi`
2.3271
2.3272 -cocoa_win.o: cocoaui/cocoa_win.m
2.3273 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_win.o -MD -MP -MF "$(DEPDIR)/cocoa_win.Tpo" -c -o cocoa_win.o `test -f 'cocoaui/cocoa_win.m' || echo '$(srcdir)/'`cocoaui/cocoa_win.m; \
2.3274 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_win.Tpo" "$(DEPDIR)/cocoa_win.Po"; else rm -f "$(DEPDIR)/cocoa_win.Tpo"; exit 1; fi
2.3275 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_win.m' object='cocoa_win.o' libtool=no @AMDEPBACKSLASH@
2.3276 +lxdream-cocoa_win.o: cocoaui/cocoa_win.m
2.3277 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_win.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_win.Tpo" -c -o lxdream-cocoa_win.o `test -f 'cocoaui/cocoa_win.m' || echo '$(srcdir)/'`cocoaui/cocoa_win.m; \
2.3278 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_win.Tpo" "$(DEPDIR)/lxdream-cocoa_win.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_win.Tpo"; exit 1; fi
2.3279 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_win.m' object='lxdream-cocoa_win.o' libtool=no @AMDEPBACKSLASH@
2.3280 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3281 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_win.o `test -f 'cocoaui/cocoa_win.m' || echo '$(srcdir)/'`cocoaui/cocoa_win.m
2.3282 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_win.o `test -f 'cocoaui/cocoa_win.m' || echo '$(srcdir)/'`cocoaui/cocoa_win.m
2.3283
2.3284 -cocoa_win.obj: cocoaui/cocoa_win.m
2.3285 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_win.obj -MD -MP -MF "$(DEPDIR)/cocoa_win.Tpo" -c -o cocoa_win.obj `if test -f 'cocoaui/cocoa_win.m'; then $(CYGPATH_W) 'cocoaui/cocoa_win.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_win.m'; fi`; \
2.3286 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_win.Tpo" "$(DEPDIR)/cocoa_win.Po"; else rm -f "$(DEPDIR)/cocoa_win.Tpo"; exit 1; fi
2.3287 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_win.m' object='cocoa_win.obj' libtool=no @AMDEPBACKSLASH@
2.3288 +lxdream-cocoa_win.obj: cocoaui/cocoa_win.m
2.3289 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_win.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_win.Tpo" -c -o lxdream-cocoa_win.obj `if test -f 'cocoaui/cocoa_win.m'; then $(CYGPATH_W) 'cocoaui/cocoa_win.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_win.m'; fi`; \
2.3290 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_win.Tpo" "$(DEPDIR)/lxdream-cocoa_win.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_win.Tpo"; exit 1; fi
2.3291 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_win.m' object='lxdream-cocoa_win.obj' libtool=no @AMDEPBACKSLASH@
2.3292 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3293 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_win.obj `if test -f 'cocoaui/cocoa_win.m'; then $(CYGPATH_W) 'cocoaui/cocoa_win.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_win.m'; fi`
2.3294 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_win.obj `if test -f 'cocoaui/cocoa_win.m'; then $(CYGPATH_W) 'cocoaui/cocoa_win.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_win.m'; fi`
2.3295
2.3296 -cocoa_gd.o: cocoaui/cocoa_gd.m
2.3297 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_gd.o -MD -MP -MF "$(DEPDIR)/cocoa_gd.Tpo" -c -o cocoa_gd.o `test -f 'cocoaui/cocoa_gd.m' || echo '$(srcdir)/'`cocoaui/cocoa_gd.m; \
2.3298 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_gd.Tpo" "$(DEPDIR)/cocoa_gd.Po"; else rm -f "$(DEPDIR)/cocoa_gd.Tpo"; exit 1; fi
2.3299 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_gd.m' object='cocoa_gd.o' libtool=no @AMDEPBACKSLASH@
2.3300 +lxdream-cocoa_gd.o: cocoaui/cocoa_gd.m
2.3301 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_gd.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_gd.Tpo" -c -o lxdream-cocoa_gd.o `test -f 'cocoaui/cocoa_gd.m' || echo '$(srcdir)/'`cocoaui/cocoa_gd.m; \
2.3302 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_gd.Tpo" "$(DEPDIR)/lxdream-cocoa_gd.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_gd.Tpo"; exit 1; fi
2.3303 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_gd.m' object='lxdream-cocoa_gd.o' libtool=no @AMDEPBACKSLASH@
2.3304 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3305 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_gd.o `test -f 'cocoaui/cocoa_gd.m' || echo '$(srcdir)/'`cocoaui/cocoa_gd.m
2.3306 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_gd.o `test -f 'cocoaui/cocoa_gd.m' || echo '$(srcdir)/'`cocoaui/cocoa_gd.m
2.3307
2.3308 -cocoa_gd.obj: cocoaui/cocoa_gd.m
2.3309 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_gd.obj -MD -MP -MF "$(DEPDIR)/cocoa_gd.Tpo" -c -o cocoa_gd.obj `if test -f 'cocoaui/cocoa_gd.m'; then $(CYGPATH_W) 'cocoaui/cocoa_gd.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_gd.m'; fi`; \
2.3310 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_gd.Tpo" "$(DEPDIR)/cocoa_gd.Po"; else rm -f "$(DEPDIR)/cocoa_gd.Tpo"; exit 1; fi
2.3311 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_gd.m' object='cocoa_gd.obj' libtool=no @AMDEPBACKSLASH@
2.3312 +lxdream-cocoa_gd.obj: cocoaui/cocoa_gd.m
2.3313 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_gd.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_gd.Tpo" -c -o lxdream-cocoa_gd.obj `if test -f 'cocoaui/cocoa_gd.m'; then $(CYGPATH_W) 'cocoaui/cocoa_gd.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_gd.m'; fi`; \
2.3314 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_gd.Tpo" "$(DEPDIR)/lxdream-cocoa_gd.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_gd.Tpo"; exit 1; fi
2.3315 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_gd.m' object='lxdream-cocoa_gd.obj' libtool=no @AMDEPBACKSLASH@
2.3316 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3317 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_gd.obj `if test -f 'cocoaui/cocoa_gd.m'; then $(CYGPATH_W) 'cocoaui/cocoa_gd.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_gd.m'; fi`
2.3318 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_gd.obj `if test -f 'cocoaui/cocoa_gd.m'; then $(CYGPATH_W) 'cocoaui/cocoa_gd.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_gd.m'; fi`
2.3319
2.3320 -cocoa_prefs.o: cocoaui/cocoa_prefs.m
2.3321 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_prefs.o -MD -MP -MF "$(DEPDIR)/cocoa_prefs.Tpo" -c -o cocoa_prefs.o `test -f 'cocoaui/cocoa_prefs.m' || echo '$(srcdir)/'`cocoaui/cocoa_prefs.m; \
2.3322 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_prefs.Tpo" "$(DEPDIR)/cocoa_prefs.Po"; else rm -f "$(DEPDIR)/cocoa_prefs.Tpo"; exit 1; fi
2.3323 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_prefs.m' object='cocoa_prefs.o' libtool=no @AMDEPBACKSLASH@
2.3324 +lxdream-cocoa_prefs.o: cocoaui/cocoa_prefs.m
2.3325 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_prefs.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_prefs.Tpo" -c -o lxdream-cocoa_prefs.o `test -f 'cocoaui/cocoa_prefs.m' || echo '$(srcdir)/'`cocoaui/cocoa_prefs.m; \
2.3326 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_prefs.Tpo" "$(DEPDIR)/lxdream-cocoa_prefs.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_prefs.Tpo"; exit 1; fi
2.3327 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_prefs.m' object='lxdream-cocoa_prefs.o' libtool=no @AMDEPBACKSLASH@
2.3328 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3329 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_prefs.o `test -f 'cocoaui/cocoa_prefs.m' || echo '$(srcdir)/'`cocoaui/cocoa_prefs.m
2.3330 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_prefs.o `test -f 'cocoaui/cocoa_prefs.m' || echo '$(srcdir)/'`cocoaui/cocoa_prefs.m
2.3331
2.3332 -cocoa_prefs.obj: cocoaui/cocoa_prefs.m
2.3333 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_prefs.obj -MD -MP -MF "$(DEPDIR)/cocoa_prefs.Tpo" -c -o cocoa_prefs.obj `if test -f 'cocoaui/cocoa_prefs.m'; then $(CYGPATH_W) 'cocoaui/cocoa_prefs.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_prefs.m'; fi`; \
2.3334 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_prefs.Tpo" "$(DEPDIR)/cocoa_prefs.Po"; else rm -f "$(DEPDIR)/cocoa_prefs.Tpo"; exit 1; fi
2.3335 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_prefs.m' object='cocoa_prefs.obj' libtool=no @AMDEPBACKSLASH@
2.3336 +lxdream-cocoa_prefs.obj: cocoaui/cocoa_prefs.m
2.3337 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_prefs.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_prefs.Tpo" -c -o lxdream-cocoa_prefs.obj `if test -f 'cocoaui/cocoa_prefs.m'; then $(CYGPATH_W) 'cocoaui/cocoa_prefs.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_prefs.m'; fi`; \
2.3338 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_prefs.Tpo" "$(DEPDIR)/lxdream-cocoa_prefs.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_prefs.Tpo"; exit 1; fi
2.3339 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_prefs.m' object='lxdream-cocoa_prefs.obj' libtool=no @AMDEPBACKSLASH@
2.3340 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3341 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_prefs.obj `if test -f 'cocoaui/cocoa_prefs.m'; then $(CYGPATH_W) 'cocoaui/cocoa_prefs.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_prefs.m'; fi`
2.3342 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_prefs.obj `if test -f 'cocoaui/cocoa_prefs.m'; then $(CYGPATH_W) 'cocoaui/cocoa_prefs.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_prefs.m'; fi`
2.3343
2.3344 -cocoa_ctrl.o: cocoaui/cocoa_ctrl.m
2.3345 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_ctrl.o -MD -MP -MF "$(DEPDIR)/cocoa_ctrl.Tpo" -c -o cocoa_ctrl.o `test -f 'cocoaui/cocoa_ctrl.m' || echo '$(srcdir)/'`cocoaui/cocoa_ctrl.m; \
2.3346 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_ctrl.Tpo" "$(DEPDIR)/cocoa_ctrl.Po"; else rm -f "$(DEPDIR)/cocoa_ctrl.Tpo"; exit 1; fi
2.3347 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_ctrl.m' object='cocoa_ctrl.o' libtool=no @AMDEPBACKSLASH@
2.3348 +lxdream-cocoa_ctrl.o: cocoaui/cocoa_ctrl.m
2.3349 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_ctrl.o -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo" -c -o lxdream-cocoa_ctrl.o `test -f 'cocoaui/cocoa_ctrl.m' || echo '$(srcdir)/'`cocoaui/cocoa_ctrl.m; \
2.3350 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo" "$(DEPDIR)/lxdream-cocoa_ctrl.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo"; exit 1; fi
2.3351 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_ctrl.m' object='lxdream-cocoa_ctrl.o' libtool=no @AMDEPBACKSLASH@
2.3352 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3353 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_ctrl.o `test -f 'cocoaui/cocoa_ctrl.m' || echo '$(srcdir)/'`cocoaui/cocoa_ctrl.m
2.3354 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_ctrl.o `test -f 'cocoaui/cocoa_ctrl.m' || echo '$(srcdir)/'`cocoaui/cocoa_ctrl.m
2.3355
2.3356 -cocoa_ctrl.obj: cocoaui/cocoa_ctrl.m
2.3357 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT cocoa_ctrl.obj -MD -MP -MF "$(DEPDIR)/cocoa_ctrl.Tpo" -c -o cocoa_ctrl.obj `if test -f 'cocoaui/cocoa_ctrl.m'; then $(CYGPATH_W) 'cocoaui/cocoa_ctrl.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_ctrl.m'; fi`; \
2.3358 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/cocoa_ctrl.Tpo" "$(DEPDIR)/cocoa_ctrl.Po"; else rm -f "$(DEPDIR)/cocoa_ctrl.Tpo"; exit 1; fi
2.3359 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_ctrl.m' object='cocoa_ctrl.obj' libtool=no @AMDEPBACKSLASH@
2.3360 +lxdream-cocoa_ctrl.obj: cocoaui/cocoa_ctrl.m
2.3361 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-cocoa_ctrl.obj -MD -MP -MF "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo" -c -o lxdream-cocoa_ctrl.obj `if test -f 'cocoaui/cocoa_ctrl.m'; then $(CYGPATH_W) 'cocoaui/cocoa_ctrl.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_ctrl.m'; fi`; \
2.3362 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo" "$(DEPDIR)/lxdream-cocoa_ctrl.Po"; else rm -f "$(DEPDIR)/lxdream-cocoa_ctrl.Tpo"; exit 1; fi
2.3363 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='cocoaui/cocoa_ctrl.m' object='lxdream-cocoa_ctrl.obj' libtool=no @AMDEPBACKSLASH@
2.3364 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3365 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o cocoa_ctrl.obj `if test -f 'cocoaui/cocoa_ctrl.m'; then $(CYGPATH_W) 'cocoaui/cocoa_ctrl.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_ctrl.m'; fi`
2.3366 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-cocoa_ctrl.obj `if test -f 'cocoaui/cocoa_ctrl.m'; then $(CYGPATH_W) 'cocoaui/cocoa_ctrl.m'; else $(CYGPATH_W) '$(srcdir)/cocoaui/cocoa_ctrl.m'; fi`
2.3367
2.3368 -video_osx.o: drivers/video_osx.m
2.3369 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT video_osx.o -MD -MP -MF "$(DEPDIR)/video_osx.Tpo" -c -o video_osx.o `test -f 'drivers/video_osx.m' || echo '$(srcdir)/'`drivers/video_osx.m; \
2.3370 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/video_osx.Tpo" "$(DEPDIR)/video_osx.Po"; else rm -f "$(DEPDIR)/video_osx.Tpo"; exit 1; fi
2.3371 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_osx.m' object='video_osx.o' libtool=no @AMDEPBACKSLASH@
2.3372 +lxdream-video_osx.o: drivers/video_osx.m
2.3373 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-video_osx.o -MD -MP -MF "$(DEPDIR)/lxdream-video_osx.Tpo" -c -o lxdream-video_osx.o `test -f 'drivers/video_osx.m' || echo '$(srcdir)/'`drivers/video_osx.m; \
2.3374 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_osx.Tpo" "$(DEPDIR)/lxdream-video_osx.Po"; else rm -f "$(DEPDIR)/lxdream-video_osx.Tpo"; exit 1; fi
2.3375 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_osx.m' object='lxdream-video_osx.o' libtool=no @AMDEPBACKSLASH@
2.3376 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3377 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o video_osx.o `test -f 'drivers/video_osx.m' || echo '$(srcdir)/'`drivers/video_osx.m
2.3378 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-video_osx.o `test -f 'drivers/video_osx.m' || echo '$(srcdir)/'`drivers/video_osx.m
2.3379
2.3380 -video_osx.obj: drivers/video_osx.m
2.3381 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT video_osx.obj -MD -MP -MF "$(DEPDIR)/video_osx.Tpo" -c -o video_osx.obj `if test -f 'drivers/video_osx.m'; then $(CYGPATH_W) 'drivers/video_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_osx.m'; fi`; \
2.3382 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/video_osx.Tpo" "$(DEPDIR)/video_osx.Po"; else rm -f "$(DEPDIR)/video_osx.Tpo"; exit 1; fi
2.3383 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_osx.m' object='video_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3384 +lxdream-video_osx.obj: drivers/video_osx.m
2.3385 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-video_osx.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_osx.Tpo" -c -o lxdream-video_osx.obj `if test -f 'drivers/video_osx.m'; then $(CYGPATH_W) 'drivers/video_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_osx.m'; fi`; \
2.3386 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_osx.Tpo" "$(DEPDIR)/lxdream-video_osx.Po"; else rm -f "$(DEPDIR)/lxdream-video_osx.Tpo"; exit 1; fi
2.3387 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_osx.m' object='lxdream-video_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3388 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3389 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o video_osx.obj `if test -f 'drivers/video_osx.m'; then $(CYGPATH_W) 'drivers/video_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_osx.m'; fi`
2.3390 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-video_osx.obj `if test -f 'drivers/video_osx.m'; then $(CYGPATH_W) 'drivers/video_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_osx.m'; fi`
2.3391
2.3392 -video_nsgl.o: drivers/video_nsgl.m
2.3393 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT video_nsgl.o -MD -MP -MF "$(DEPDIR)/video_nsgl.Tpo" -c -o video_nsgl.o `test -f 'drivers/video_nsgl.m' || echo '$(srcdir)/'`drivers/video_nsgl.m; \
2.3394 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/video_nsgl.Tpo" "$(DEPDIR)/video_nsgl.Po"; else rm -f "$(DEPDIR)/video_nsgl.Tpo"; exit 1; fi
2.3395 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_nsgl.m' object='video_nsgl.o' libtool=no @AMDEPBACKSLASH@
2.3396 +lxdream-video_nsgl.o: drivers/video_nsgl.m
2.3397 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-video_nsgl.o -MD -MP -MF "$(DEPDIR)/lxdream-video_nsgl.Tpo" -c -o lxdream-video_nsgl.o `test -f 'drivers/video_nsgl.m' || echo '$(srcdir)/'`drivers/video_nsgl.m; \
2.3398 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_nsgl.Tpo" "$(DEPDIR)/lxdream-video_nsgl.Po"; else rm -f "$(DEPDIR)/lxdream-video_nsgl.Tpo"; exit 1; fi
2.3399 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_nsgl.m' object='lxdream-video_nsgl.o' libtool=no @AMDEPBACKSLASH@
2.3400 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3401 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o video_nsgl.o `test -f 'drivers/video_nsgl.m' || echo '$(srcdir)/'`drivers/video_nsgl.m
2.3402 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-video_nsgl.o `test -f 'drivers/video_nsgl.m' || echo '$(srcdir)/'`drivers/video_nsgl.m
2.3403
2.3404 -video_nsgl.obj: drivers/video_nsgl.m
2.3405 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT video_nsgl.obj -MD -MP -MF "$(DEPDIR)/video_nsgl.Tpo" -c -o video_nsgl.obj `if test -f 'drivers/video_nsgl.m'; then $(CYGPATH_W) 'drivers/video_nsgl.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_nsgl.m'; fi`; \
2.3406 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/video_nsgl.Tpo" "$(DEPDIR)/video_nsgl.Po"; else rm -f "$(DEPDIR)/video_nsgl.Tpo"; exit 1; fi
2.3407 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_nsgl.m' object='video_nsgl.obj' libtool=no @AMDEPBACKSLASH@
2.3408 +lxdream-video_nsgl.obj: drivers/video_nsgl.m
2.3409 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-video_nsgl.obj -MD -MP -MF "$(DEPDIR)/lxdream-video_nsgl.Tpo" -c -o lxdream-video_nsgl.obj `if test -f 'drivers/video_nsgl.m'; then $(CYGPATH_W) 'drivers/video_nsgl.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_nsgl.m'; fi`; \
2.3410 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-video_nsgl.Tpo" "$(DEPDIR)/lxdream-video_nsgl.Po"; else rm -f "$(DEPDIR)/lxdream-video_nsgl.Tpo"; exit 1; fi
2.3411 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/video_nsgl.m' object='lxdream-video_nsgl.obj' libtool=no @AMDEPBACKSLASH@
2.3412 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3413 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o video_nsgl.obj `if test -f 'drivers/video_nsgl.m'; then $(CYGPATH_W) 'drivers/video_nsgl.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_nsgl.m'; fi`
2.3414 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-video_nsgl.obj `if test -f 'drivers/video_nsgl.m'; then $(CYGPATH_W) 'drivers/video_nsgl.m'; else $(CYGPATH_W) '$(srcdir)/drivers/video_nsgl.m'; fi`
2.3415
2.3416 -audio_osx.o: drivers/audio_osx.m
2.3417 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT audio_osx.o -MD -MP -MF "$(DEPDIR)/audio_osx.Tpo" -c -o audio_osx.o `test -f 'drivers/audio_osx.m' || echo '$(srcdir)/'`drivers/audio_osx.m; \
2.3418 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/audio_osx.Tpo" "$(DEPDIR)/audio_osx.Po"; else rm -f "$(DEPDIR)/audio_osx.Tpo"; exit 1; fi
2.3419 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/audio_osx.m' object='audio_osx.o' libtool=no @AMDEPBACKSLASH@
2.3420 +lxdream-audio_osx.o: drivers/audio_osx.m
2.3421 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-audio_osx.o -MD -MP -MF "$(DEPDIR)/lxdream-audio_osx.Tpo" -c -o lxdream-audio_osx.o `test -f 'drivers/audio_osx.m' || echo '$(srcdir)/'`drivers/audio_osx.m; \
2.3422 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_osx.Tpo" "$(DEPDIR)/lxdream-audio_osx.Po"; else rm -f "$(DEPDIR)/lxdream-audio_osx.Tpo"; exit 1; fi
2.3423 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/audio_osx.m' object='lxdream-audio_osx.o' libtool=no @AMDEPBACKSLASH@
2.3424 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3425 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o audio_osx.o `test -f 'drivers/audio_osx.m' || echo '$(srcdir)/'`drivers/audio_osx.m
2.3426 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-audio_osx.o `test -f 'drivers/audio_osx.m' || echo '$(srcdir)/'`drivers/audio_osx.m
2.3427
2.3428 -audio_osx.obj: drivers/audio_osx.m
2.3429 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT audio_osx.obj -MD -MP -MF "$(DEPDIR)/audio_osx.Tpo" -c -o audio_osx.obj `if test -f 'drivers/audio_osx.m'; then $(CYGPATH_W) 'drivers/audio_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_osx.m'; fi`; \
2.3430 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/audio_osx.Tpo" "$(DEPDIR)/audio_osx.Po"; else rm -f "$(DEPDIR)/audio_osx.Tpo"; exit 1; fi
2.3431 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/audio_osx.m' object='audio_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3432 +lxdream-audio_osx.obj: drivers/audio_osx.m
2.3433 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-audio_osx.obj -MD -MP -MF "$(DEPDIR)/lxdream-audio_osx.Tpo" -c -o lxdream-audio_osx.obj `if test -f 'drivers/audio_osx.m'; then $(CYGPATH_W) 'drivers/audio_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_osx.m'; fi`; \
2.3434 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-audio_osx.Tpo" "$(DEPDIR)/lxdream-audio_osx.Po"; else rm -f "$(DEPDIR)/lxdream-audio_osx.Tpo"; exit 1; fi
2.3435 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/audio_osx.m' object='lxdream-audio_osx.obj' libtool=no @AMDEPBACKSLASH@
2.3436 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3437 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o audio_osx.obj `if test -f 'drivers/audio_osx.m'; then $(CYGPATH_W) 'drivers/audio_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_osx.m'; fi`
2.3438 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-audio_osx.obj `if test -f 'drivers/audio_osx.m'; then $(CYGPATH_W) 'drivers/audio_osx.m'; else $(CYGPATH_W) '$(srcdir)/drivers/audio_osx.m'; fi`
2.3439
2.3440 -osx_iokit.o: drivers/osx_iokit.m
2.3441 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx_iokit.o -MD -MP -MF "$(DEPDIR)/osx_iokit.Tpo" -c -o osx_iokit.o `test -f 'drivers/osx_iokit.m' || echo '$(srcdir)/'`drivers/osx_iokit.m; \
2.3442 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/osx_iokit.Tpo" "$(DEPDIR)/osx_iokit.Po"; else rm -f "$(DEPDIR)/osx_iokit.Tpo"; exit 1; fi
2.3443 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/osx_iokit.m' object='osx_iokit.o' libtool=no @AMDEPBACKSLASH@
2.3444 +lxdream-osx_iokit.o: drivers/osx_iokit.m
2.3445 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-osx_iokit.o -MD -MP -MF "$(DEPDIR)/lxdream-osx_iokit.Tpo" -c -o lxdream-osx_iokit.o `test -f 'drivers/osx_iokit.m' || echo '$(srcdir)/'`drivers/osx_iokit.m; \
2.3446 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-osx_iokit.Tpo" "$(DEPDIR)/lxdream-osx_iokit.Po"; else rm -f "$(DEPDIR)/lxdream-osx_iokit.Tpo"; exit 1; fi
2.3447 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/osx_iokit.m' object='lxdream-osx_iokit.o' libtool=no @AMDEPBACKSLASH@
2.3448 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3449 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o osx_iokit.o `test -f 'drivers/osx_iokit.m' || echo '$(srcdir)/'`drivers/osx_iokit.m
2.3450 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-osx_iokit.o `test -f 'drivers/osx_iokit.m' || echo '$(srcdir)/'`drivers/osx_iokit.m
2.3451
2.3452 -osx_iokit.obj: drivers/osx_iokit.m
2.3453 -@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx_iokit.obj -MD -MP -MF "$(DEPDIR)/osx_iokit.Tpo" -c -o osx_iokit.obj `if test -f 'drivers/osx_iokit.m'; then $(CYGPATH_W) 'drivers/osx_iokit.m'; else $(CYGPATH_W) '$(srcdir)/drivers/osx_iokit.m'; fi`; \
2.3454 -@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/osx_iokit.Tpo" "$(DEPDIR)/osx_iokit.Po"; else rm -f "$(DEPDIR)/osx_iokit.Tpo"; exit 1; fi
2.3455 -@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/osx_iokit.m' object='osx_iokit.obj' libtool=no @AMDEPBACKSLASH@
2.3456 +lxdream-osx_iokit.obj: drivers/osx_iokit.m
2.3457 +@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT lxdream-osx_iokit.obj -MD -MP -MF "$(DEPDIR)/lxdream-osx_iokit.Tpo" -c -o lxdream-osx_iokit.obj `if test -f 'drivers/osx_iokit.m'; then $(CYGPATH_W) 'drivers/osx_iokit.m'; else $(CYGPATH_W) '$(srcdir)/drivers/osx_iokit.m'; fi`; \
2.3458 +@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/lxdream-osx_iokit.Tpo" "$(DEPDIR)/lxdream-osx_iokit.Po"; else rm -f "$(DEPDIR)/lxdream-osx_iokit.Tpo"; exit 1; fi
2.3459 +@AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='drivers/osx_iokit.m' object='lxdream-osx_iokit.obj' libtool=no @AMDEPBACKSLASH@
2.3460 @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2.3461 -@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o osx_iokit.obj `if test -f 'drivers/osx_iokit.m'; then $(CYGPATH_W) 'drivers/osx_iokit.m'; else $(CYGPATH_W) '$(srcdir)/drivers/osx_iokit.m'; fi`
2.3462 +@am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lxdream_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o lxdream-osx_iokit.obj `if test -f 'drivers/osx_iokit.m'; then $(CYGPATH_W) 'drivers/osx_iokit.m'; else $(CYGPATH_W) '$(srcdir)/drivers/osx_iokit.m'; fi`
2.3463 uninstall-info-am:
2.3464
2.3465 # This directory's subdirectories are mostly independent; you can cd
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
3.2 +++ b/src/drivers/gl_sl.c Mon Mar 05 11:41:03 2012 +1000
3.3 @@ -0,0 +1,474 @@
3.4 +/**
3.5 + * $Id$
3.6 + *
3.7 + * GLSL wrapper code to hide the differences between the different gl/sl APIs.
3.8 + *
3.9 + * Copyright (c) 2007-2010 Nathan Keynes.
3.10 + *
3.11 + * This program is free software; you can redistribute it and/or modify
3.12 + * it under the terms of the GNU General Public License as published by
3.13 + * the Free Software Foundation; either version 2 of the License, or
3.14 + * (at your option) any later version.
3.15 + *
3.16 + * This program is distributed in the hope that it will be useful,
3.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
3.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3.19 + * GNU General Public License for more details.
3.20 + */
3.21 +
3.22 +#include <assert.h>
3.23 +
3.24 +#include "lxdream.h"
3.25 +#include "display.h"
3.26 +#include "pvr2/glutil.h"
3.27 +#include "pvr2/shaders.h"
3.28 +
3.29 +#define MAX_ERROR_BUF 4096
3.30 +#define INVALID_SHADER 0
3.31 +#define INVALID_PROGRAM 0
3.32 +
3.33 +#ifdef HAVE_OPENGL_SHADER_ARB
3.34 +typedef GLhandleARB gl_program_t;
3.35 +typedef GLhandleARB gl_shader_t;
3.36 +#else
3.37 +typedef GLuint gl_program_t;
3.38 +typedef GLuint gl_shader_t;
3.39 +#endif
3.40 +
3.41 +static gl_shader_t glsl_create_vertex_shader( const char *source );
3.42 +static gl_shader_t glsl_create_fragment_shader( const char *source );
3.43 +static gl_program_t glsl_create_program( gl_shader_t *shaderv );
3.44 +static void glsl_use_program(gl_program_t program);
3.45 +static void glsl_destroy_shader(gl_shader_t shader);
3.46 +static void glsl_destroy_program(gl_program_t program);
3.47 +static gboolean glsl_load_shaders( );
3.48 +static void glsl_unload_shaders(void);
3.49 +
3.50 +typedef void (*program_cleanup_fn_t)();
3.51 +static void glsl_set_cleanup_fn( program_cleanup_fn_t );
3.52 +static void glsl_run_cleanup_fn( );
3.53 +
3.54 +#ifdef HAVE_OPENGL_SHADER_ARB
3.55 +
3.56 +static void glsl_print_error( char *msg, GLhandleARB obj )
3.57 +{
3.58 + char buf[MAX_ERROR_BUF];
3.59 + GLsizei length;
3.60 + glGetInfoLogARB( obj, sizeof(buf), &length, buf );
3.61 + ERROR( "%s: %s", msg, buf );
3.62 +}
3.63 +
3.64 +static gboolean glsl_check_shader_error( char *msg, GLhandleARB obj )
3.65 +{
3.66 + GLint value;
3.67 +
3.68 + glGetObjectParameterivARB(obj, GL_OBJECT_COMPILE_STATUS_ARB, &value);
3.69 + if( value == 0 ) {
3.70 + glsl_print_error(msg, obj);
3.71 + return FALSE;
3.72 + }
3.73 + return TRUE;
3.74 +}
3.75 +
3.76 +static gboolean glsl_check_program_error( char *msg, GLhandleARB obj )
3.77 +{
3.78 + if( glGetError() != GL_NO_ERROR ) {
3.79 + glsl_print_error(msg, obj);
3.80 + }
3.81 + return TRUE;
3.82 +}
3.83 +
3.84 +static gl_shader_t glsl_create_vertex_shader( const char *source )
3.85 +{
3.86 + gboolean ok;
3.87 + gl_shader_t shader = glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB);
3.88 +
3.89 + glShaderSourceARB( shader, 1, &source, NULL );
3.90 + glCompileShaderARB(shader);
3.91 + ok = glsl_check_shader_error("Failed to compile vertex shader", shader);
3.92 + if( !ok ) {
3.93 + glDeleteObjectARB(shader);
3.94 + return INVALID_SHADER;
3.95 + } else {
3.96 + return shader;
3.97 + }
3.98 +}
3.99 +
3.100 +static gl_shader_t glsl_create_fragment_shader( const char *source )
3.101 +{
3.102 + gboolean ok;
3.103 + gl_shader_t shader = glCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB);
3.104 +
3.105 + glShaderSourceARB( shader, 1, &source, NULL );
3.106 + glCompileShaderARB(shader);
3.107 + ok = glsl_check_shader_error("Failed to compile fragment shader", shader);
3.108 + if( !ok ) {
3.109 + glDeleteObjectARB(shader);
3.110 + return INVALID_SHADER;
3.111 + } else {
3.112 + return shader;
3.113 + }
3.114 +}
3.115 +
3.116 +static gl_program_t glsl_create_program( gl_shader_t *shaderv )
3.117 +{
3.118 + gboolean ok;
3.119 + unsigned i;
3.120 + gl_program_t program = glCreateProgramObjectARB();
3.121 +
3.122 + for( i=0; shaderv[i] != INVALID_SHADER; i++ ) {
3.123 + glAttachObjectARB(program, shaderv[i]);
3.124 + }
3.125 +
3.126 + glLinkProgramARB(program);
3.127 + ok = glsl_check_program_error( "Failed to link shader program", program );
3.128 + if( !ok ) {
3.129 + glDeleteObjectARB(program);
3.130 + return INVALID_PROGRAM;
3.131 + } else {
3.132 + return program;
3.133 + }
3.134 +}
3.135 +
3.136 +static void glsl_use_program(gl_program_t program)
3.137 +{
3.138 + glUseProgramObjectARB(program);
3.139 +}
3.140 +
3.141 +static void glsl_destroy_shader(gl_shader_t shader)
3.142 +{
3.143 + glDeleteObjectARB(shader);
3.144 +}
3.145 +
3.146 +static void glsl_destroy_program(gl_program_t program)
3.147 +{
3.148 + glDeleteObjectARB(program);
3.149 +}
3.150 +
3.151 +static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
3.152 +{
3.153 + return glGetUniformLocationARB(program, name);
3.154 +}
3.155 +
3.156 +static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
3.157 +{
3.158 + return glGetAttribLocationARB(program, name);
3.159 +}
3.160 +
3.161 +#define glsl_set_uniform_sampler1D(id,v) glUniform1iARB(id,v)
3.162 +#define glsl_set_uniform_sampler2D(id,v) glUniform1iARB(id,v)
3.163 +#define glsl_set_uniform_float(id,v) glUniform1fARB(id,v)
3.164 +#define glsl_set_uniform_vec2(id,v) glUniform2fvARB(id,1,v)
3.165 +#define glsl_set_uniform_vec3(id,v) glUniform3fvARB(id,1,v)
3.166 +#define glsl_set_uniform_vec4(id,v) glUniform4fvARB(id,1,v)
3.167 +#define glsl_set_uniform_mat4(id,v) glUniformMatrix4fvARB(id,1,GL_FALSE,v)
3.168 +#define glsl_set_attrib_vec2(id,stride,v) glVertexAttribPointerARB(id, 2, GL_FLOAT, GL_FALSE, stride, v)
3.169 +#define glsl_set_attrib_vec3(id,stride,v) glVertexAttribPointerARB(id, 3, GL_FLOAT, GL_FALSE, stride, v)
3.170 +#define glsl_set_attrib_vec4(id,stride,v) glVertexAttribPointerARB(id, 4, GL_FLOAT, GL_FALSE, stride, v)
3.171 +#define glsl_enable_attrib(id) glEnableVertexAttribArrayARB(id)
3.172 +#define glsl_disable_attrib(id) glDisableVertexAttribArrayARB(id)
3.173 +
3.174 +#elif HAVE_OPENGL_SHADER
3.175 +
3.176 +static gboolean glsl_check_shader_error( char *msg, GLuint shader )
3.177 +{
3.178 + GLint value;
3.179 +
3.180 + glGetShaderiv( shader, GL_COMPILE_STATUS, &value );
3.181 + if( value == 0 ) {
3.182 + char buf[MAX_ERROR_BUF];
3.183 + GLsizei length;
3.184 + glGetShaderInfoLog( shader, sizeof(buf), &length, buf );
3.185 + ERROR( "%s: %s", msg, buf );
3.186 + return FALSE;
3.187 + }
3.188 + return TRUE;
3.189 +}
3.190 +
3.191 +static gboolean glsl_check_program_error( char *msg, GLuint program )
3.192 +{
3.193 + if( glGetError() != GL_NO_ERROR ) {
3.194 + char buf[MAX_ERROR_BUF];
3.195 + GLsizei length;
3.196 + glGetProgramInfoLog( program, sizeof(buf), &length, buf );
3.197 + ERROR( "%s: %s", msg, buf );
3.198 + return FALSE;
3.199 + }
3.200 + return TRUE;
3.201 +}
3.202 +
3.203 +static gl_shader_t glsl_create_vertex_shader( const char *source )
3.204 +{
3.205 + gboolean ok;
3.206 + gl_shader_t shader = glCreateShader(GL_VERTEX_SHADER);
3.207 +
3.208 + glShaderSource( shader, 1, &source, NULL );
3.209 + glCompileShader(shader);
3.210 + ok = glsl_check_shader_error( "Failed to compile vertex shader", shader );
3.211 + if( !ok ) {
3.212 + glDeleteShader(shader);
3.213 + return INVALID_SHADER;
3.214 + } else {
3.215 + return shader;
3.216 + }
3.217 +
3.218 +}
3.219 +
3.220 +static gl_shader_t glsl_create_fragment_shader( const char *source )
3.221 +{
3.222 + gboolean ok;
3.223 + gl_shader_t shader = glCreateShader(GL_FRAGMENT_SHADER);
3.224 +
3.225 + glShaderSource( shader, 1, &source, NULL );
3.226 + glCompileShader(shader);
3.227 + ok = glsl_check_shader_error( "Failed to compile fragment shader", shader );
3.228 + if( !ok ) {
3.229 + glDeleteShader(shader);
3.230 + return INVALID_SHADER;
3.231 + } else {
3.232 + return shader;
3.233 + }
3.234 +}
3.235 +
3.236 +static gl_program_t glsl_create_program( gl_shader_t *shaderv )
3.237 +{
3.238 + gboolean ok;
3.239 + unsigned i;
3.240 + gl_program_t program = glCreateProgram();
3.241 +
3.242 + for( i=0; shaderv[i] != INVALID_SHADER; i++ ) {
3.243 + glAttachShader(program, shaderv[i]);
3.244 + }
3.245 + glLinkProgram(program);
3.246 + ok = glsl_check_program_error( "Failed to link shader program", program );
3.247 + if( !ok ) {
3.248 + glDeleteProgram(program);
3.249 + return INVALID_PROGRAM;
3.250 + } else {
3.251 + return program;
3.252 + }
3.253 +}
3.254 +
3.255 +static void glsl_use_program(gl_program_t program)
3.256 +{
3.257 + glUseProgram(program);
3.258 +}
3.259 +
3.260 +static void glsl_destroy_shader(gl_shader_t shader)
3.261 +{
3.262 + glDeleteShader(shader);
3.263 +}
3.264 +
3.265 +static void glsl_destroy_program(gl_program_t program)
3.266 +{
3.267 + glDeleteProgram(program);
3.268 +}
3.269 +
3.270 +static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
3.271 +{
3.272 + return glGetUniformLocation(program, name);
3.273 +}
3.274 +static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
3.275 +{
3.276 + return glGetAttribLocation(program, name);
3.277 +}
3.278 +
3.279 +#define glsl_set_uniform_sampler1D(id,v) glUniform1i(id,v)
3.280 +#define glsl_set_uniform_sampler2D(id,v) glUniform1i(id,v)
3.281 +#define glsl_set_uniform_float(id,v) glUniform1f(id,v)
3.282 +#define glsl_set_uniform_vec2(id,v) glUniform2fv(id,1,v)
3.283 +#define glsl_set_uniform_vec3(id,v) glUniform3fv(id,1,v)
3.284 +#define glsl_set_uniform_vec4(id,v) glUniform4fv(id,1,v)
3.285 +#define glsl_set_uniform_mat4(id,v) glUniformMatrix4fv(id,1,GL_FALSE,v)
3.286 +#define glsl_set_attrib_vec2(id,stride,v) glVertexAttribPointer(id, 2, GL_FLOAT, GL_FALSE, stride, v)
3.287 +#define glsl_set_attrib_vec3(id,stride,v) glVertexAttribPointer(id, 3, GL_FLOAT, GL_FALSE, stride, v)
3.288 +#define glsl_set_attrib_vec4(id,stride,v) glVertexAttribPointer(id, 4, GL_FLOAT, GL_FALSE, stride, v)
3.289 +#define glsl_enable_attrib(id) glEnableVertexAttribArray(id)
3.290 +#define glsl_disable_attrib(id) glDisableVertexAttribArray(id)
3.291 +
3.292 +
3.293 +#else
3.294 +
3.295 +static gl_shader_t glsl_create_vertex_shader( const char *source )
3.296 +{
3.297 + return 0;
3.298 +}
3.299 +
3.300 +static gl_shader_t glsl_create_fragment_shader( const char *source )
3.301 +{
3.302 + return 0;
3.303 +}
3.304 +
3.305 +static gl_program_t glsl_create_program( gl_shader_t *shaderv )
3.306 +{
3.307 + return 0;
3.308 +}
3.309 +
3.310 +static void glsl_use_program(gl_program_t program)
3.311 +{
3.312 +}
3.313 +
3.314 +static void glsl_destroy_shader(gl_shader_t shader)
3.315 +{
3.316 +}
3.317 +
3.318 +static void glsl_destroy_program(gl_program_t program)
3.319 +{
3.320 +}
3.321 +
3.322 +static static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
3.323 +{
3.324 + return 0;
3.325 +}
3.326 +
3.327 +static static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
3.328 +{
3.329 + return 0;
3.330 +}
3.331 +
3.332 +#define glsl_set_uniform_sampler1D(id,v)
3.333 +#define glsl_set_uniform_sampler2D(id,v)
3.334 +#define glsl_set_uniform_float(id,v)
3.335 +#define glsl_set_uniform_vec2(id,v)
3.336 +#define glsl_set_uniform_vec3(id,v)
3.337 +#define glsl_set_uniform_vec4(id,v)
3.338 +#define glsl_set_uniform_mat4(id,v)
3.339 +#define glsl_set_attrib_vec2(id,stride,v)
3.340 +#define glsl_set_attrib_vec3(id,stride,v)
3.341 +#define glsl_set_attrib_vec4(id,stride,v)
3.342 +#define glsl_enable_attrib(id)
3.343 +#define glsl_disable_attrib(id)
3.344 +
3.345 +
3.346 +#endif
3.347 +
3.348 +/****************************************************************************/
3.349 +
3.350 +program_cleanup_fn_t current_cleanup_fn = NULL;
3.351 +
3.352 +/* Pull in the auto-generated shader definitions */
3.353 +
3.354 +#include "pvr2/shaders.def"
3.355 +
3.356 +static gl_program_t program_array[GLSL_NUM_PROGRAMS];
3.357 +
3.358 +static gboolean glsl_load_shaders()
3.359 +{
3.360 + gl_shader_t shader_array[GLSL_NUM_SHADERS];
3.361 + gboolean ok = TRUE;
3.362 + unsigned i, j;
3.363 + for( i=0; i<GLSL_NUM_SHADERS; i++ )
3.364 + shader_array[i] = INVALID_SHADER;
3.365 + for( i=0; i<GLSL_NUM_PROGRAMS; i++ )
3.366 + program_array[i] = INVALID_PROGRAM;
3.367 +
3.368 + /* Compile the shader fragments */
3.369 + for( i=0; shader_source[i].type != GLSL_NO_SHADER; i++ ) {
3.370 + gl_shader_t shader = INVALID_SHADER;
3.371 + switch(shader_source[i].type) {
3.372 + case GLSL_VERTEX_SHADER:
3.373 + shader = glsl_create_vertex_shader(shader_source[i].source);
3.374 + break;
3.375 + case GLSL_FRAGMENT_SHADER:
3.376 + shader = glsl_create_fragment_shader(shader_source[i].source);
3.377 + break;
3.378 + }
3.379 + if( shader == INVALID_SHADER ) {
3.380 + ok = FALSE;
3.381 + break;
3.382 + } else {
3.383 + shader_array[i] = shader;
3.384 + }
3.385 + }
3.386 +
3.387 + /* Link the programs */
3.388 + if(ok) for( i=0; program_list[i][0] != GLSL_NO_SHADER; i++ ) {
3.389 + gl_shader_t shaderv[GLSL_NUM_SHADERS+1];
3.390 + for( j=0; program_list[i][j] != GLSL_NO_SHADER; j++ ) {
3.391 + shaderv[j] = shader_array[program_list[i][j]];
3.392 + }
3.393 + shaderv[j] = INVALID_SHADER;
3.394 + gl_program_t program = glsl_create_program(shaderv);
3.395 + if( program == INVALID_PROGRAM ) {
3.396 + ok = FALSE;
3.397 + break;
3.398 + } else {
3.399 + /* Check that we can actually use the program (can this really fail?) */
3.400 + glsl_use_program(program);
3.401 + if( !glsl_check_program_error( "Failed to activate shader program", program ) ) {
3.402 + ok = FALSE;
3.403 + }
3.404 + program_array[i] = program;
3.405 + }
3.406 + }
3.407 +
3.408 + /**
3.409 + * Destroy the compiled fragments (the linked programs don't need them
3.410 + * anymore)
3.411 + */
3.412 + for( i=0; i<GLSL_NUM_SHADERS; i++ ) {
3.413 + if( shader_array[i] != INVALID_SHADER )
3.414 + glsl_destroy_shader(shader_array[i]);
3.415 + }
3.416 +
3.417 + /**
3.418 + * If we errored, delete the programs. It's all or nothing.
3.419 + */
3.420 + if( !ok ) {
3.421 + glsl_unload_shaders();
3.422 + return FALSE;
3.423 + }
3.424 +
3.425 + glsl_init_programs(program_array);
3.426 + glsl_use_program(0);
3.427 + return TRUE;
3.428 +}
3.429 +
3.430 +static void glsl_set_cleanup_fn( program_cleanup_fn_t fn )
3.431 +{
3.432 + if( fn != current_cleanup_fn ) {
3.433 + if( current_cleanup_fn != NULL ) {
3.434 + current_cleanup_fn();
3.435 + }
3.436 + current_cleanup_fn = fn;
3.437 + }
3.438 +}
3.439 +
3.440 +static void glsl_run_cleanup_fn()
3.441 +{
3.442 + if( current_cleanup_fn ) {
3.443 + current_cleanup_fn();
3.444 + }
3.445 + current_cleanup_fn = NULL;
3.446 +}
3.447 +
3.448 +static void glsl_unload_shaders()
3.449 +{
3.450 + unsigned i;
3.451 + glsl_run_cleanup_fn();
3.452 + for( i=0; i<GLSL_NUM_PROGRAMS; i++ ) {
3.453 + if( program_array[i] != INVALID_PROGRAM ) {
3.454 + glsl_destroy_program(program_array[i]);
3.455 + program_array[i] = INVALID_PROGRAM;
3.456 + }
3.457 + }
3.458 +}
3.459 +
3.460 +gboolean glsl_init( display_driver_t driver )
3.461 +{
3.462 + gboolean result;
3.463 + if( isGLShaderSupported() && isGLMultitextureSupported() ) {
3.464 + if( !glsl_load_shaders( ) ) {
3.465 + WARN( "Unable to load GL shaders" );
3.466 + result = FALSE;
3.467 + } else {
3.468 + INFO( "Shaders loaded successfully" );
3.469 + result = TRUE;
3.470 + }
3.471 + } else {
3.472 + INFO( "Shaders not supported" );
3.473 + result = FALSE;
3.474 + }
3.475 + driver->capabilities.has_sl = result;
3.476 + return result;
3.477 +}
4.1 --- a/src/drivers/video_egl.c Sun Mar 04 21:28:48 2012 +1000
4.2 +++ b/src/drivers/video_egl.c Mon Mar 05 11:41:03 2012 +1000
4.3 @@ -121,18 +121,12 @@
4.4 return FALSE;
4.5 }
4.6
4.7 - if( gl_fbo_is_supported() ) {
4.8 - display_egl_driver.capabilities.has_gl = TRUE;
4.9 - display_egl_driver.capabilities.depth_bits = 16; /* TODO: get from config info */
4.10 - gl_fbo_init(&display_egl_driver);
4.11 - gl_vbo_init(&display_egl_driver);
4.12 - glsl_init(&display_egl_driver);
4.13 - fbo_created = TRUE;
4.14 - } else {
4.15 - ERROR( "Display does not support FBO" );
4.16 + display_egl_driver.capabilities.depth_bits = 16; /* TODO: get from config info */
4.17 + if( !gl_init_driver(&display_egl_driver, TRUE) ) {
4.18 video_egl_clear_window();
4.19 return FALSE;
4.20 }
4.21 + fbo_created = TRUE;
4.22 gl_set_video_size(width, height, 0);
4.23 pvr2_setup_gl_context();
4.24 INFO( "Initialised EGL %d.%d\n", major, minor );
5.1 --- a/src/drivers/video_gl.c Sun Mar 04 21:28:48 2012 +1000
5.2 +++ b/src/drivers/video_gl.c Mon Mar 05 11:41:03 2012 +1000
5.3 @@ -252,6 +252,32 @@
5.4 return TRUE;
5.5 }
5.6
5.7 +gboolean gl_init_driver( display_driver_t driver, gboolean need_fbo )
5.8 +{
5.9 + /* Use framebuffer objects if available */
5.10 + if( gl_fbo_is_supported() ) {
5.11 + gl_fbo_init(driver);
5.12 + } else if( need_fbo ) {
5.13 + ERROR( "Framebuffer objects not supported - unable to construct an off-screen buffer" );
5.14 + return FALSE;
5.15 + }
5.16 +
5.17 + /* Use SL shaders if available */
5.18 + gboolean have_shaders = glsl_init(driver);
5.19 +#ifndef HAVE_OPENGL_FIXEDFUNC
5.20 + if( !have_shaders ) { /* Shaders are required if we don't have fixed-functionality */
5.21 + gl_fbo_shutdown();
5.22 + return FALSE;
5.23 + }
5.24 +#endif
5.25 +
5.26 + /* Use vertex arrays, VBOs, etc, if we have them */
5.27 + gl_vbo_init(driver);
5.28 +
5.29 + driver->capabilities.has_gl = TRUE;
5.30 + return TRUE;
5.31 +}
5.32 +
5.33 static gboolean video_gl_init();
5.34
5.35 /**
5.36 @@ -268,13 +294,5 @@
5.37
5.38 static gboolean video_gl_init()
5.39 {
5.40 - if( gl_fbo_is_supported() ) {
5.41 - display_gl_driver.capabilities.has_gl = TRUE;
5.42 - gl_fbo_init(&display_gl_driver);
5.43 - gl_vbo_init(&display_gl_driver);
5.44 - glsl_init(&display_gl_driver);
5.45 - return TRUE;
5.46 - } else {
5.47 - return FALSE;
5.48 - }
5.49 + return gl_init_driver(&display_gl_driver, TRUE);
5.50 }
6.1 --- a/src/drivers/video_gl.h Sun Mar 04 21:28:48 2012 +1000
6.2 +++ b/src/drivers/video_gl.h Mon Mar 05 11:41:03 2012 +1000
6.3 @@ -85,6 +85,17 @@
6.4 /* Set the fallback vertex buffer handling, for drivers with no GL */
6.5 void gl_vbo_fallback_init( display_driver_t driver );
6.6
6.7 +/** Initialize and load SL shaders */
6.8 +gboolean glsl_init( display_driver_t driver );
6.9 +
6.10 +/** Initialise common GL functionality (FBO, SL, VBO)
6.11 + * @param driver driver to be updated with appropriate calls
6.12 + * @param need_fbo if TRUE, FBOs are required (ie main driver has no other way
6.13 + * to construct an off-screen buffer)
6.14 + * @return TRUE on success, FALSE if we couldn't setup a working context
6.15 + */
6.16 +gboolean gl_init_driver( display_driver_t driver, gboolean need_fbo );
6.17 +
6.18 #ifdef __cplusplus
6.19 }
6.20 #endif
7.1 --- a/src/drivers/video_glx.c Sun Mar 04 21:28:48 2012 +1000
7.2 +++ b/src/drivers/video_glx.c Mon Mar 05 11:41:03 2012 +1000
7.3 @@ -240,17 +240,14 @@
7.4 driver->print_info = video_glx_print_info;
7.5 driver->capabilities.has_gl = TRUE;
7.6 driver->capabilities.depth_bits = glx_depth_bits;
7.7 - if( gl_fbo_is_supported() ) { // First preference
7.8 - gl_fbo_init(driver);
7.9 - } else if( glx_pbuffer_supported ) {
7.10 - glx_pbuffer_init(driver);
7.11 - } else {
7.12 - ERROR( "Unable to create render buffers (requires either EXT_framebuffer_object or GLX 1.3+)" );
7.13 + if( !gl_init_driver(driver, !glx_pbuffer_supported) ) {
7.14 video_glx_shutdown();
7.15 return FALSE;
7.16 }
7.17 - gl_vbo_init(driver);
7.18 - glsl_init(driver);
7.19 + if( driver->create_render_buffer == NULL ) {
7.20 + /* If we get here, pbuffers are supported and FBO didn't work */
7.21 + glx_pbuffer_init(driver);
7.22 + }
7.23 return TRUE;
7.24 }
7.25
8.1 --- a/src/drivers/video_nsgl.m Sun Mar 04 21:28:48 2012 +1000
8.2 +++ b/src/drivers/video_nsgl.m Mon Mar 05 11:41:03 2012 +1000
8.3 @@ -43,19 +43,7 @@
8.4 driver->swap_buffers = video_nsgl_swap_buffers;
8.5 driver->capabilities.has_gl = TRUE;
8.6 driver->capabilities.depth_bits = 24;
8.7 - if( gl_fbo_is_supported() ) {
8.8 - gl_fbo_init(driver);
8.9 - } else {
8.10 - /* Note there is a 'native' buffer framework, but since all current
8.11 - * Apple drivers appear to support FBO, there's not much point in
8.12 - * doing the work to support them.
8.13 - */
8.14 - ERROR( "FBO not supported" );
8.15 - return FALSE;
8.16 - }
8.17 - gl_vbo_init(driver);
8.18 - glsl_init(driver);
8.19 -
8.20 + gl_init_driver(driver, TRUE);
8.21 return TRUE;
8.22 }
8.23
9.1 --- a/src/pvr2/gl_sl.c Sun Mar 04 21:28:48 2012 +1000
9.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
9.3 @@ -1,512 +0,0 @@
9.4 -/**
9.5 - * $Id$
9.6 - *
9.7 - * GLSL wrapper code to hide the differences between the different gl/sl APIs.
9.8 - *
9.9 - * Copyright (c) 2007-2010 Nathan Keynes.
9.10 - *
9.11 - * This program is free software; you can redistribute it and/or modify
9.12 - * it under the terms of the GNU General Public License as published by
9.13 - * the Free Software Foundation; either version 2 of the License, or
9.14 - * (at your option) any later version.
9.15 - *
9.16 - * This program is distributed in the hope that it will be useful,
9.17 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
9.18 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9.19 - * GNU General Public License for more details.
9.20 - */
9.21 -
9.22 -#include <assert.h>
9.23 -
9.24 -#include "lxdream.h"
9.25 -#include "display.h"
9.26 -#include "pvr2/glutil.h"
9.27 -#include "pvr2/shaders.h"
9.28 -
9.29 -#define MAX_ERROR_BUF 4096
9.30 -#define INVALID_SHADER 0
9.31 -#define INVALID_PROGRAM 0
9.32 -
9.33 -#ifdef HAVE_OPENGL_SHADER_ARB
9.34 -typedef GLhandleARB gl_program_t;
9.35 -typedef GLhandleARB gl_shader_t;
9.36 -#else
9.37 -typedef GLuint gl_program_t;
9.38 -typedef GLuint gl_shader_t;
9.39 -#endif
9.40 -
9.41 -gboolean glsl_is_supported();
9.42 -gl_shader_t glsl_create_vertex_shader( const char *source );
9.43 -gl_shader_t glsl_create_fragment_shader( const char *source );
9.44 -gl_program_t glsl_create_program( gl_shader_t *shaderv );
9.45 -void glsl_use_program(gl_program_t program);
9.46 -void glsl_destroy_shader(gl_shader_t shader);
9.47 -void glsl_destroy_program(gl_program_t program);
9.48 -
9.49 -typedef void (*program_cleanup_fn_t)();
9.50 -static void glsl_set_cleanup_fn( program_cleanup_fn_t );
9.51 -
9.52 -#ifdef HAVE_OPENGL_SHADER_ARB
9.53 -
9.54 -gboolean glsl_is_supported()
9.55 -{
9.56 - return isOpenGLES2() || (isGLExtensionSupported("GL_ARB_fragment_shader") &&
9.57 - isGLExtensionSupported("GL_ARB_vertex_shader") &&
9.58 - isGLExtensionSupported("GL_ARB_shading_language_100"));
9.59 -}
9.60 -
9.61 -const char *glsl_get_version()
9.62 -{
9.63 - return glGetString(GL_SHADING_LANGUAGE_VERSION_ARB);
9.64 -}
9.65 -
9.66 -void glsl_print_error( char *msg, GLhandleARB obj )
9.67 -{
9.68 - char buf[MAX_ERROR_BUF];
9.69 - GLsizei length;
9.70 - glGetInfoLogARB( obj, sizeof(buf), &length, buf );
9.71 - ERROR( "%s: %s", msg, buf );
9.72 -}
9.73 -
9.74 -gboolean glsl_check_shader_error( char *msg, GLhandleARB obj )
9.75 -{
9.76 - GLint value;
9.77 -
9.78 - glGetObjectParameterivARB(obj, GL_OBJECT_COMPILE_STATUS_ARB, &value);
9.79 - if( value == 0 ) {
9.80 - glsl_print_error(msg, obj);
9.81 - return FALSE;
9.82 - }
9.83 - return TRUE;
9.84 -}
9.85 -
9.86 -gboolean glsl_check_program_error( char *msg, GLhandleARB obj )
9.87 -{
9.88 - if( glGetError() != GL_NO_ERROR ) {
9.89 - glsl_print_error(msg, obj);
9.90 - }
9.91 - return TRUE;
9.92 -}
9.93 -
9.94 -gl_shader_t glsl_create_vertex_shader( const char *source )
9.95 -{
9.96 - gboolean ok;
9.97 - gl_shader_t shader = glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB);
9.98 -
9.99 - glShaderSourceARB( shader, 1, &source, NULL );
9.100 - glCompileShaderARB(shader);
9.101 - ok = glsl_check_shader_error("Failed to compile vertex shader", shader);
9.102 - if( !ok ) {
9.103 - glDeleteObjectARB(shader);
9.104 - return INVALID_SHADER;
9.105 - } else {
9.106 - return shader;
9.107 - }
9.108 -}
9.109 -
9.110 -gl_shader_t glsl_create_fragment_shader( const char *source )
9.111 -{
9.112 - gboolean ok;
9.113 - gl_shader_t shader = glCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB);
9.114 -
9.115 - glShaderSourceARB( shader, 1, &source, NULL );
9.116 - glCompileShaderARB(shader);
9.117 - ok = glsl_check_shader_error("Failed to compile fragment shader", shader);
9.118 - if( !ok ) {
9.119 - glDeleteObjectARB(shader);
9.120 - return INVALID_SHADER;
9.121 - } else {
9.122 - return shader;
9.123 - }
9.124 -}
9.125 -
9.126 -gl_program_t glsl_create_program( gl_shader_t *shaderv )
9.127 -{
9.128 - gboolean ok;
9.129 - unsigned i;
9.130 - gl_program_t program = glCreateProgramObjectARB();
9.131 -
9.132 - for( i=0; shaderv[i] != INVALID_SHADER; i++ ) {
9.133 - glAttachObjectARB(program, shaderv[i]);
9.134 - }
9.135 -
9.136 - glLinkProgramARB(program);
9.137 - ok = glsl_check_program_error( "Failed to link shader program", program );
9.138 - if( !ok ) {
9.139 - glDeleteObjectARB(program);
9.140 - return INVALID_PROGRAM;
9.141 - } else {
9.142 - return program;
9.143 - }
9.144 -}
9.145 -
9.146 -void glsl_use_program(gl_program_t program)
9.147 -{
9.148 - glUseProgramObjectARB(program);
9.149 -}
9.150 -
9.151 -void glsl_destroy_shader(gl_shader_t shader)
9.152 -{
9.153 - glDeleteObjectARB(shader);
9.154 -}
9.155 -
9.156 -void glsl_destroy_program(gl_program_t program)
9.157 -{
9.158 - glDeleteObjectARB(program);
9.159 -}
9.160 -
9.161 -static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
9.162 -{
9.163 - return glGetUniformLocationARB(program, name);
9.164 -}
9.165 -
9.166 -static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
9.167 -{
9.168 - return glGetAttribLocationARB(program, name);
9.169 -}
9.170 -
9.171 -#define glsl_set_uniform_sampler1D(id,v) glUniform1iARB(id,v)
9.172 -#define glsl_set_uniform_sampler2D(id,v) glUniform1iARB(id,v)
9.173 -#define glsl_set_uniform_float(id,v) glUniform1fARB(id,v)
9.174 -#define glsl_set_uniform_vec2(id,v) glUniform2fvARB(id,1,v)
9.175 -#define glsl_set_uniform_vec3(id,v) glUniform3fvARB(id,1,v)
9.176 -#define glsl_set_uniform_vec4(id,v) glUniform4fvARB(id,1,v)
9.177 -#define glsl_set_uniform_mat4(id,v) glUniformMatrix4fvARB(id,1,GL_FALSE,v)
9.178 -#define glsl_set_attrib_vec2(id,stride,v) glVertexAttribPointerARB(id, 2, GL_FLOAT, GL_FALSE, stride, v)
9.179 -#define glsl_set_attrib_vec3(id,stride,v) glVertexAttribPointerARB(id, 3, GL_FLOAT, GL_FALSE, stride, v)
9.180 -#define glsl_set_attrib_vec4(id,stride,v) glVertexAttribPointerARB(id, 4, GL_FLOAT, GL_FALSE, stride, v)
9.181 -#define glsl_enable_attrib(id) glEnableVertexAttribArrayARB(id)
9.182 -#define glsl_disable_attrib(id) glDisableVertexAttribArrayARB(id)
9.183 -
9.184 -#elif HAVE_OPENGL_SHADER
9.185 -
9.186 -gboolean glsl_is_supported()
9.187 -{
9.188 - return isOpenGLES2() || (isGLExtensionSupported("GL_ARB_fragment_shader") &&
9.189 - isGLExtensionSupported("GL_ARB_vertex_shader") &&
9.190 - isGLExtensionSupported("GL_ARB_shading_language_100"));
9.191 -}
9.192 -
9.193 -const char *glsl_get_version()
9.194 -{
9.195 - return glGetString(GL_SHADING_LANGUAGE_VERSION);
9.196 -}
9.197 -
9.198 -gboolean glsl_check_shader_error( char *msg, GLuint shader )
9.199 -{
9.200 - GLint value;
9.201 -
9.202 - glGetShaderiv( shader, GL_COMPILE_STATUS, &value );
9.203 - if( value == 0 ) {
9.204 - char buf[MAX_ERROR_BUF];
9.205 - GLsizei length;
9.206 - glGetShaderInfoLog( shader, sizeof(buf), &length, buf );
9.207 - ERROR( "%s: %s", msg, buf );
9.208 - return FALSE;
9.209 - }
9.210 - return TRUE;
9.211 -}
9.212 -
9.213 -gboolean glsl_check_program_error( char *msg, GLuint program )
9.214 -{
9.215 - if( glGetError() != GL_NO_ERROR ) {
9.216 - char buf[MAX_ERROR_BUF];
9.217 - GLsizei length;
9.218 - glGetProgramInfoLog( program, sizeof(buf), &length, buf );
9.219 - ERROR( "%s: %s", msg, buf );
9.220 - return FALSE;
9.221 - }
9.222 - return TRUE;
9.223 -}
9.224 -
9.225 -gl_shader_t glsl_create_vertex_shader( const char *source )
9.226 -{
9.227 - gboolean ok;
9.228 - gl_shader_t shader = glCreateShader(GL_VERTEX_SHADER);
9.229 -
9.230 - glShaderSource( shader, 1, &source, NULL );
9.231 - glCompileShader(shader);
9.232 - ok = glsl_check_shader_error( "Failed to compile vertex shader", shader );
9.233 - if( !ok ) {
9.234 - glDeleteShader(shader);
9.235 - return INVALID_SHADER;
9.236 - } else {
9.237 - return shader;
9.238 - }
9.239 -
9.240 -}
9.241 -
9.242 -gl_shader_t glsl_create_fragment_shader( const char *source )
9.243 -{
9.244 - gboolean ok;
9.245 - gl_shader_t shader = glCreateShader(GL_FRAGMENT_SHADER);
9.246 -
9.247 - glShaderSource( shader, 1, &source, NULL );
9.248 - glCompileShader(shader);
9.249 - ok = glsl_check_shader_error( "Failed to compile fragment shader", shader );
9.250 - if( !ok ) {
9.251 - glDeleteShader(shader);
9.252 - return INVALID_SHADER;
9.253 - } else {
9.254 - return shader;
9.255 - }
9.256 -}
9.257 -
9.258 -gl_program_t glsl_create_program( gl_shader_t *shaderv )
9.259 -{
9.260 - gboolean ok;
9.261 - unsigned i;
9.262 - gl_program_t program = glCreateProgram();
9.263 -
9.264 - for( i=0; shaderv[i] != INVALID_SHADER; i++ ) {
9.265 - glAttachShader(program, shaderv[i]);
9.266 - }
9.267 - glLinkProgram(program);
9.268 - ok = glsl_check_program_error( "Failed to link shader program", program );
9.269 - if( !ok ) {
9.270 - glDeleteProgram(program);
9.271 - return INVALID_PROGRAM;
9.272 - } else {
9.273 - return program;
9.274 - }
9.275 -}
9.276 -
9.277 -void glsl_use_program(gl_program_t program)
9.278 -{
9.279 - glUseProgram(program);
9.280 -}
9.281 -
9.282 -void glsl_destroy_shader(gl_shader_t shader)
9.283 -{
9.284 - glDeleteShader(shader);
9.285 -}
9.286 -
9.287 -void glsl_destroy_program(gl_program_t program)
9.288 -{
9.289 - glDeleteProgram(program);
9.290 -}
9.291 -
9.292 -static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
9.293 -{
9.294 - return glGetUniformLocation(program, name);
9.295 -}
9.296 -static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
9.297 -{
9.298 - return glGetAttribLocation(program, name);
9.299 -}
9.300 -
9.301 -#define glsl_set_uniform_sampler1D(id,v) glUniform1i(id,v)
9.302 -#define glsl_set_uniform_sampler2D(id,v) glUniform1i(id,v)
9.303 -#define glsl_set_uniform_float(id,v) glUniform1f(id,v)
9.304 -#define glsl_set_uniform_vec2(id,v) glUniform2fv(id,1,v)
9.305 -#define glsl_set_uniform_vec3(id,v) glUniform3fv(id,1,v)
9.306 -#define glsl_set_uniform_vec4(id,v) glUniform4fv(id,1,v)
9.307 -#define glsl_set_uniform_mat4(id,v) glUniformMatrix4fv(id,1,GL_FALSE,v)
9.308 -#define glsl_set_attrib_vec2(id,stride,v) glVertexAttribPointer(id, 2, GL_FLOAT, GL_FALSE, stride, v)
9.309 -#define glsl_set_attrib_vec3(id,stride,v) glVertexAttribPointer(id, 3, GL_FLOAT, GL_FALSE, stride, v)
9.310 -#define glsl_set_attrib_vec4(id,stride,v) glVertexAttribPointer(id, 4, GL_FLOAT, GL_FALSE, stride, v)
9.311 -#define glsl_enable_attrib(id) glEnableVertexAttribArray(id)
9.312 -#define glsl_disable_attrib(id) glDisableVertexAttribArray(id)
9.313 -
9.314 -
9.315 -#else
9.316 -gboolean glsl_is_supported()
9.317 -{
9.318 - return FALSE;
9.319 -}
9.320 -
9.321 -const char *glsl_get_version()
9.322 -{
9.323 - return 0;
9.324 -}
9.325 -
9.326 -gl_shader_t glsl_create_vertex_shader( const char *source )
9.327 -{
9.328 - return 0;
9.329 -}
9.330 -
9.331 -gl_shader_t glsl_create_fragment_shader( const char *source )
9.332 -{
9.333 - return 0;
9.334 -}
9.335 -
9.336 -gl_program_t glsl_create_program( gl_shader_t *shaderv )
9.337 -{
9.338 - return 0;
9.339 -}
9.340 -
9.341 -void glsl_use_program(gl_program_t program)
9.342 -{
9.343 -}
9.344 -
9.345 -void glsl_destroy_shader(gl_shader_t shader)
9.346 -{
9.347 -}
9.348 -
9.349 -void glsl_destroy_program(gl_program_t program)
9.350 -{
9.351 -}
9.352 -
9.353 -static inline GLint glsl_get_uniform_location(gl_program_t program, const char *name)
9.354 -{
9.355 - return 0;
9.356 -}
9.357 -
9.358 -static inline GLint glsl_get_attrib_location(gl_program_t program, const char *name)
9.359 -{
9.360 - return 0;
9.361 -}
9.362 -
9.363 -#define glsl_set_uniform_sampler1D(id,v)
9.364 -#define glsl_set_uniform_sampler2D(id,v)
9.365 -#define glsl_set_uniform_float(id,v)
9.366 -#define glsl_set_uniform_vec2(id,v)
9.367 -#define glsl_set_uniform_vec3(id,v)
9.368 -#define glsl_set_uniform_vec4(id,v)
9.369 -#define glsl_set_uniform_mat4(id,v)
9.370 -#define glsl_set_attrib_vec2(id,stride,v)
9.371 -#define glsl_set_attrib_vec3(id,stride,v)
9.372 -#define glsl_set_attrib_vec4(id,stride,v)
9.373 -#define glsl_enable_attrib(id)
9.374 -#define glsl_disable_attrib(id)
9.375 -
9.376 -
9.377 -#endif
9.378 -
9.379 -/****************************************************************************/
9.380 -
9.381 -program_cleanup_fn_t current_cleanup_fn = NULL;
9.382 -
9.383 -/* Pull in the auto-generated shader definitions */
9.384 -
9.385 -#include "pvr2/shaders.def"
9.386 -
9.387 -static gl_program_t program_array[GLSL_NUM_PROGRAMS];
9.388 -
9.389 -
9.390 -gboolean glsl_load_shaders()
9.391 -{
9.392 - gl_shader_t shader_array[GLSL_NUM_SHADERS];
9.393 - gboolean ok = TRUE;
9.394 - unsigned i, j;
9.395 - for( i=0; i<GLSL_NUM_SHADERS; i++ )
9.396 - shader_array[i] = INVALID_SHADER;
9.397 - for( i=0; i<GLSL_NUM_PROGRAMS; i++ )
9.398 - program_array[i] = INVALID_PROGRAM;
9.399 -
9.400 - /* Compile the shader fragments */
9.401 - for( i=0; shader_source[i].type != GLSL_NO_SHADER; i++ ) {
9.402 - gl_shader_t shader = INVALID_SHADER;
9.403 - switch(shader_source[i].type) {
9.404 - case GLSL_VERTEX_SHADER:
9.405 - shader = glsl_create_vertex_shader(shader_source[i].source);
9.406 - break;
9.407 - case GLSL_FRAGMENT_SHADER:
9.408 - shader = glsl_create_fragment_shader(shader_source[i].source);
9.409 - break;
9.410 - }
9.411 - if( shader == INVALID_SHADER ) {
9.412 - ok = FALSE;
9.413 - break;
9.414 - } else {
9.415 - shader_array[i] = shader;
9.416 - }
9.417 - }
9.418 -
9.419 - /* Link the programs */
9.420 - if(ok) for( i=0; program_list[i][0] != GLSL_NO_SHADER; i++ ) {
9.421 - gl_shader_t shaderv[GLSL_NUM_SHADERS+1];
9.422 - for( j=0; program_list[i][j] != GLSL_NO_SHADER; j++ ) {
9.423 - shaderv[j] = shader_array[program_list[i][j]];
9.424 - }
9.425 - shaderv[j] = INVALID_SHADER;
9.426 - gl_program_t program = glsl_create_program(shaderv);
9.427 - if( program == INVALID_PROGRAM ) {
9.428 - ok = FALSE;
9.429 - break;
9.430 - } else {
9.431 - /* Check that we can actually use the program (can this really fail?) */
9.432 - glsl_use_program(program);
9.433 - if( !glsl_check_program_error( "Failed to activate shader program", program ) ) {
9.434 - ok = FALSE;
9.435 - }
9.436 - program_array[i] = program;
9.437 - }
9.438 - }
9.439 -
9.440 - /**
9.441 - * Destroy the compiled fragments (the linked programs don't need them
9.442 - * anymore)
9.443 - */
9.444 - for( i=0; i<GLSL_NUM_SHADERS; i++ ) {
9.445 - if( shader_array[i] != INVALID_SHADER )
9.446 - glsl_destroy_shader(shader_array[i]);
9.447 - }
9.448 -
9.449 - /**
9.450 - * If we errored, delete the programs. It's all or nothing.
9.451 - */
9.452 - if( !ok ) {
9.453 - glsl_unload_shaders();
9.454 - return FALSE;
9.455 - }
9.456 -
9.457 - glsl_init_programs(program_array);
9.458 - glsl_use_program(0);
9.459 - return TRUE;
9.460 -}
9.461 -
9.462 -static void glsl_set_cleanup_fn( program_cleanup_fn_t fn )
9.463 -{
9.464 - if( fn != current_cleanup_fn ) {
9.465 - if( current_cleanup_fn != NULL ) {
9.466 - current_cleanup_fn();
9.467 - }
9.468 - current_cleanup_fn = fn;
9.469 - }
9.470 -}
9.471 -
9.472 -static void glsl_run_cleanup_fn()
9.473 -{
9.474 - if( current_cleanup_fn ) {
9.475 - current_cleanup_fn();
9.476 - }
9.477 - current_cleanup_fn = NULL;
9.478 -}
9.479 -
9.480 -void glsl_unload_shaders()
9.481 -{
9.482 - unsigned i;
9.483 - glsl_run_cleanup_fn();
9.484 - for( i=0; i<GLSL_NUM_PROGRAMS; i++ ) {
9.485 - if( program_array[i] != INVALID_PROGRAM ) {
9.486 - glsl_destroy_program(program_array[i]);
9.487 - program_array[i] = INVALID_PROGRAM;
9.488 - }
9.489 - }
9.490 -}
9.491 -
9.492 -void glsl_clear_shader()
9.493 -{
9.494 - glsl_run_cleanup_fn();
9.495 - glsl_use_program(0);
9.496 -}
9.497 -
9.498 -gboolean glsl_init( display_driver_t driver )
9.499 -{
9.500 - gboolean result;
9.501 - if( glsl_is_supported() && isGLMultitextureSupported() ) {
9.502 - if( !glsl_load_shaders( ) ) {
9.503 - WARN( "Unable to load GL shaders" );
9.504 - result = FALSE;
9.505 - } else {
9.506 - INFO( "Shaders loaded successfully" );
9.507 - result = TRUE;
9.508 - }
9.509 - } else {
9.510 - INFO( "Shaders not supported" );
9.511 - result = FALSE;
9.512 - }
9.513 - driver->capabilities.has_sl = result;
9.514 - return result;
9.515 -}
10.1 --- a/src/pvr2/glutil.c Sun Mar 04 21:28:48 2012 +1000
10.2 +++ b/src/pvr2/glutil.c Mon Mar 05 11:41:03 2012 +1000
10.3 @@ -21,6 +21,14 @@
10.4 #include <glib/gstrfuncs.h>
10.5 #include "pvr2/glutil.h"
10.6
10.7 +gboolean isOpenGLES2()
10.8 +{
10.9 + const char *str = glGetString(GL_VERSION);
10.10 + if( strncmp(str, "OpenGL ES 2.", 12) == 0 ) {
10.11 + return TRUE;
10.12 + }
10.13 +}
10.14 +
10.15 gboolean isGLSecondaryColorSupported()
10.16 {
10.17 return isGLExtensionSupported("GL_EXT_secondary_color");
10.18 @@ -41,12 +49,12 @@
10.19 return isGLExtensionSupported("GL_ARB_texture_mirrored_repeat");
10.20 }
10.21
10.22 -gboolean isOpenGLES2()
10.23 +
10.24 +gboolean isGLShaderSupported()
10.25 {
10.26 - const char *str = glGetString(GL_VERSION);
10.27 - if( strncmp(str, "OpenGL ES 2.", 12) == 0 ) {
10.28 - return TRUE;
10.29 - }
10.30 + return isOpenGLES2() || (isGLExtensionSupported("GL_ARB_fragment_shader") &&
10.31 + isGLExtensionSupported("GL_ARB_vertex_shader") &&
10.32 + isGLExtensionSupported("GL_ARB_shading_language_100"));
10.33 }
10.34
10.35 /**
10.36 @@ -206,9 +214,8 @@
10.37 fprintf( out, "GL Vendor: %s\n", glGetString(GL_VENDOR) );
10.38 fprintf( out, "GL Renderer: %s\n", glGetString(GL_RENDERER) );
10.39 fprintf( out, "GL Version: %s\n", glGetString(GL_VERSION) );
10.40 - if( glsl_is_supported() ) {
10.41 - const char * version = glsl_get_version();
10.42 - fprintf( out, "SL Version: %s\n", version );
10.43 + if( isGLShaderSupported() ) {
10.44 + fprintf( out, "SL Version: %s\n", glGetString(GL_SHADING_LANGUAGE_VERSION) );
10.45 }
10.46
10.47 fprintf( out, "GL Extensions:\n" );
11.1 --- a/src/pvr2/glutil.h Sun Mar 04 21:28:48 2012 +1000
11.2 +++ b/src/pvr2/glutil.h Mon Mar 05 11:41:03 2012 +1000
11.3 @@ -56,6 +56,7 @@
11.4 gboolean isGLPixelBufferSupported();
11.5 gboolean isGLMultitextureSupported();
11.6 gboolean isGLMirroredTextureSupported();
11.7 +gboolean isGLShaderSupported();
11.8 GLint glGetMaxColourAttachments();
11.9
11.10 /****** Extension variant wrangling *****/
11.11 @@ -120,6 +121,11 @@
11.12 #define GL_BGRA GL_BGRA_EXT
11.13 #endif
11.14
11.15 +#if defined(GL_SHADING_LANGUAGE_VERSION_ARB) && !defined(GL_SHADING_LANGUAGE_VERSION)
11.16 +#define GL_SHADING_LANGUAGE_VERSION GL_SHADING_LANGUAGE_VERSION_ARB
11.17 +#endif
11.18 +
11.19 +
11.20 #if defined(HAVE_OPENGL_FBO_EXT) && !defined(HAVE_OPENGL_FBO)
11.21 #define glGenFramebuffers glGenFramebuffersEXT
11.22 #define glGenRenderbuffers glGenRenderbuffersEXT
11.23 @@ -136,11 +142,6 @@
11.24
11.25
11.26 /****** Shader handling (gl_sl.c) *****/
11.27 -gboolean glsl_init( display_driver_t driver );
11.28 -gboolean glsl_is_supported(void);
11.29 -const char *glsl_get_version(void);
11.30 -gboolean glsl_load_shaders( );
11.31 -void glsl_unload_shaders(void);
11.32 void glsl_clear_shader();
11.33
11.34 /* Define an orthographic transform matrix, given the bounding box (assuming origin at 0) */
12.1 --- a/src/tools/genglsl.c Sun Mar 04 21:28:48 2012 +1000
12.2 +++ b/src/tools/genglsl.c Mon Mar 05 11:41:03 2012 +1000
12.3 @@ -389,6 +389,8 @@
12.4 }
12.5 }
12.6
12.7 + fprintf( f, "void glsl_clear_shader();\n" );
12.8 +
12.9 fprintf( f, "#endif /* !lxdream_glsl_H */\n" );
12.10
12.11 fclose(f);
12.12 @@ -480,6 +482,9 @@
12.13 }
12.14 }
12.15
12.16 + fprintf( f, "\nvoid glsl_clear_shader() {\n" );
12.17 + fprintf( f, " glsl_run_cleanup_fn();\n glsl_use_program(0);\n}\n" );
12.18 +
12.19 fprintf( f, "\nstatic void glsl_init_programs( gl_program_t *ids ) {\n" );
12.20 for( program_ptr = data->programs, i=0; program_ptr != NULL; program_ptr = program_ptr->next, i++ ) {
12.21 program_t program = program_ptr->data;
12.22 @@ -494,6 +499,7 @@
12.23 }
12.24 }
12.25 }
12.26 +
12.27 fprintf( f, "}\n" );
12.28
12.29 fclose(f);
.