Added d3d9 dll.

This commit is contained in:
Alexandre Julliard 2003-07-01 01:11:13 +00:00
parent a3dbd7e2c7
commit aa1bdc4263
4 changed files with 17 additions and 2 deletions

3
configure vendored

File diff suppressed because one or more lines are too long

View File

@ -1394,6 +1394,7 @@ dlls/crtdll/Makefile
dlls/crypt32/Makefile
dlls/ctl3d/Makefile
dlls/d3d8/Makefile
dlls/d3d9/Makefile
dlls/d3dim/Makefile
dlls/d3dx8/Makefile
dlls/dciman32/Makefile

View File

@ -8,7 +8,7 @@ VPATH = @srcdir@
# special configure-dependent targets
GLU32FILES = glu32
OPENGLFILES = d3d8 d3dx8 opengl32
OPENGLFILES = d3d8 d3d9 d3dx8 opengl32
XFILES = ddraw x11drv
EXTRADIRS = @GLU32FILES@ @OPENGLFILES@ @XFILES@
@ -128,6 +128,7 @@ BASEDIRS = \
SUBDIRS = \
$(BASEDIRS) \
d3d8 \
d3d9 \
d3dx8 \
ddraw \
glu32 \
@ -344,6 +345,9 @@ ctl3d32.dll$(DLLEXT) ctl3d.dll$(DLLEXT) ctl3dv2.dll$(DLLEXT): ctl3d/ctl3d32.dll$
d3d8.dll$(DLLEXT): d3d8/d3d8.dll$(DLLEXT)
$(RM) $@ && $(LN_S) d3d8/d3d8.dll$(DLLEXT) $@
d3d9.dll$(DLLEXT): d3d9/d3d9.dll$(DLLEXT)
$(RM) $@ && $(LN_S) d3d9/d3d9.dll$(DLLEXT) $@
d3dim.dll$(DLLEXT): d3dim/d3dim.dll$(DLLEXT)
$(RM) $@ && $(LN_S) d3dim/d3dim.dll$(DLLEXT) $@
@ -677,6 +681,7 @@ IMPORT_LIBS = \
libcrypt32 \
libctl3d32 \
libd3d8 \
libd3d9 \
libd3dim \
libd3dx8 \
libdciman32 \
@ -818,6 +823,11 @@ libd3d8.def: d3d8/d3d8.spec.def
libd3d8.a: d3d8/d3d8.spec.def
$(DLLTOOL) -k -l $@ -d d3d8/d3d8.spec.def
libd3d9.def: d3d9/d3d9.spec.def
$(RM) $@ && $(LN_S) d3d9/d3d9.spec.def $@
libd3d9.a: d3d9/d3d9.spec.def
$(DLLTOOL) -k -l $@ -d d3d9/d3d9.spec.def
libd3dim.def: d3dim/d3dim.spec.def
$(RM) $@ && $(LN_S) d3dim/d3dim.spec.def $@
libd3dim.a: d3dim/d3dim.spec.def
@ -1254,6 +1264,7 @@ crtdll/crtdll.spec.def: $(WINEBUILD)
crypt32/crypt32.spec.def: $(WINEBUILD)
ctl3d/ctl3d32.spec.def: $(WINEBUILD)
d3d8/d3d8.spec.def: $(WINEBUILD)
d3d9/d3d9.spec.def: $(WINEBUILD)
d3dim/d3dim.spec.def: $(WINEBUILD)
d3dx8/d3dx8.spec.def: $(WINEBUILD)
dciman32/dciman32.spec.def: $(WINEBUILD)
@ -1357,6 +1368,7 @@ crtdll/crtdll.dll$(DLLEXT): crtdll
crypt32/crypt32.dll$(DLLEXT): crypt32
ctl3d/ctl3d32.dll$(DLLEXT): ctl3d
d3d8/d3d8.dll$(DLLEXT): d3d8
d3d9/d3d9.dll$(DLLEXT): d3d9
d3dim/d3dim.dll$(DLLEXT): d3dim
d3dx8/d3dx8.dll$(DLLEXT): d3dx8
dciman32/dciman32.dll$(DLLEXT): dciman32

View File

@ -36,6 +36,7 @@ my %special_dlls =
"glu32" => "GLU32FILES",
"opengl32" => "OPENGLFILES",
"d3d8" => "OPENGLFILES",
"d3d9" => "OPENGLFILES",
"d3dx8" => "OPENGLFILES",
"x11drv" => "XFILES"
);