makefiles: Add a standard header for all makefiles to replace the common variable initializations.
This commit is contained in:
parent
a53c44a613
commit
81b8ee863e
101
Make.rules.in
101
Make.rules.in
|
@ -1,12 +1,6 @@
|
||||||
# Global rules shared by all makefiles -*-Makefile-*-
|
# Global rules shared by all makefiles -*-Makefile-*-
|
||||||
#
|
#
|
||||||
# Each individual makefile must define the following variables:
|
# Each individual makefile may define the following variables:
|
||||||
# TOPSRCDIR : top-level source directory
|
|
||||||
# TOPOBJDIR : top-level object directory
|
|
||||||
# SRCDIR : source directory for this module
|
|
||||||
# MODULE : name of the module being built
|
|
||||||
#
|
|
||||||
# Each individual makefile may define the following additional variables:
|
|
||||||
# C_SRCS : C sources for the module
|
# C_SRCS : C sources for the module
|
||||||
# RC_SRCS : resource source files
|
# RC_SRCS : resource source files
|
||||||
# EXTRA_SRCS : extra source files for make depend
|
# EXTRA_SRCS : extra source files for make depend
|
||||||
|
@ -18,104 +12,19 @@
|
||||||
|
|
||||||
# First some useful definitions
|
# First some useful definitions
|
||||||
|
|
||||||
SHELL = /bin/sh
|
|
||||||
CC = @CC@
|
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
LIBS = @LIBS@
|
|
||||||
BISON = @BISON@
|
|
||||||
FLEX = @FLEX@
|
|
||||||
EXEEXT = @EXEEXT@
|
|
||||||
OBJEXT = @OBJEXT@
|
|
||||||
LIBEXT = @LIBEXT@
|
|
||||||
DLLEXT = @DLLEXT@
|
|
||||||
TOOLSEXT = @TOOLSEXT@
|
|
||||||
IMPLIBEXT = @IMPLIBEXT@
|
|
||||||
LDSHARED = @LDSHARED@
|
LDSHARED = @LDSHARED@
|
||||||
DLLTOOL = @DLLTOOL@
|
|
||||||
DLLWRAP = @DLLWRAP@
|
|
||||||
AR = @AR@
|
|
||||||
ARFLAGS = @ARFLAGS@
|
|
||||||
RANLIB = @RANLIB@
|
|
||||||
STRIP = @STRIP@
|
|
||||||
LN_S = @LN_S@
|
|
||||||
TOOLSDIR = @TOOLSDIR@
|
|
||||||
LDFLAGS = @LDFLAGS@
|
|
||||||
PRELINK = @PRELINK@
|
|
||||||
RM = rm -f
|
|
||||||
MV = mv
|
|
||||||
LINT = @LINT@
|
|
||||||
LINTFLAGS = @LINTFLAGS@
|
|
||||||
FONTFORGE = @FONTFORGE@
|
|
||||||
RSVG = @RSVG@
|
|
||||||
CONVERT = @CONVERT@
|
|
||||||
ICOTOOL = @ICOTOOL@
|
|
||||||
CROSSCC = @CROSSCC@
|
|
||||||
CROSSTARGET = @CROSSTARGET@
|
|
||||||
CROSSAR = $(CROSSTARGET)-ar
|
|
||||||
CROSSRANLIB = $(CROSSTARGET)-ranlib
|
|
||||||
FAKEEXT = $(DLLEXT:.so=.fake)
|
|
||||||
INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
|
INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
|
||||||
EXTRACFLAGS = @EXTRACFLAGS@
|
|
||||||
ALLCFLAGS = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
|
ALLCFLAGS = $(INCLUDES) $(DEFS) $(DLLFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
|
||||||
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
|
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
|
||||||
IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
|
IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
|
||||||
TARGETFLAGS = @TARGETFLAGS@
|
|
||||||
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
|
|
||||||
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
|
|
||||||
BUILDIMAGE = $(TOPSRCDIR)/tools/buildimage
|
|
||||||
C2MAN = $(TOPSRCDIR)/tools/c2man.pl
|
|
||||||
RUNTEST = $(TOPSRCDIR)/tools/runtest
|
|
||||||
WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
|
|
||||||
MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
|
|
||||||
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
|
|
||||||
WRC = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
|
|
||||||
WMC = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
|
|
||||||
WIDL = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
|
|
||||||
WINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR) @UNWINDFLAGS@
|
|
||||||
CROSSWINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR) --lib-suffix=.cross.a
|
|
||||||
RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
|
|
||||||
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
|
|
||||||
RC = $(WRC)
|
|
||||||
RCFLAGS = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
|
RCFLAGS = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
|
||||||
LDPATH = @LDPATH@
|
|
||||||
DLLDIR = $(TOPOBJDIR)/dlls
|
|
||||||
LIBPORT = $(TOPOBJDIR)/libs/port/libwine_port.a
|
|
||||||
LIBWPP = $(TOPOBJDIR)/libs/wpp/libwpp.a
|
|
||||||
LIBWINE = -L$(TOPOBJDIR)/libs/wine -lwine
|
|
||||||
LDRPATH_INSTALL = @LDRPATH_INSTALL@
|
|
||||||
LDRPATH_LOCAL = @LDRPATH_LOCAL@
|
|
||||||
|
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
# Installation infos
|
|
||||||
|
|
||||||
INSTALL = @INSTALL@ $(INSTALL_FLAGS)
|
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
|
|
||||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
|
|
||||||
INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
|
|
||||||
prefix = @prefix@
|
|
||||||
exec_prefix = @exec_prefix@
|
|
||||||
bindir = @bindir@
|
|
||||||
libdir = @libdir@
|
|
||||||
datarootdir = @datarootdir@
|
|
||||||
datadir = @datadir@
|
|
||||||
infodir = @infodir@
|
|
||||||
mandir = @mandir@
|
|
||||||
sysconfdir = @sysconfdir@
|
|
||||||
includedir = @includedir@/wine
|
|
||||||
dlldir = @libdir@/wine
|
|
||||||
fakedlldir = $(dlldir)/fakedlls
|
|
||||||
prog_manext = 1
|
|
||||||
api_manext = 3w
|
|
||||||
conf_manext = 5
|
|
||||||
CLEAN_FILES = *.o *.a *.so *.ln *.res *.fake *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
|
|
||||||
|
|
||||||
IDL_GEN_C_SRCS = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
|
IDL_GEN_C_SRCS = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
|
||||||
$(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
|
$(IDL_P_SRCS:.idl=_p.c) $(IDL_S_SRCS:.idl=_s.c)
|
||||||
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
|
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
|
||||||
$(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
|
$(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
|
||||||
|
|
||||||
|
CLEAN_FILES = *.o *.a *.so *.ln *.res *.fake *.$(LIBEXT) \\\#*\\\# *~ *% .\\\#* *.bak *.orig *.rej *.flc core
|
||||||
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:%=dlldata.c) \
|
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:%=dlldata.c) \
|
||||||
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
|
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
|
||||||
|
|
||||||
|
@ -125,10 +34,6 @@ OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_
|
||||||
CROSSOBJS = $(OBJS:.o=.cross.o)
|
CROSSOBJS = $(OBJS:.o=.cross.o)
|
||||||
LINTS = $(C_SRCS:.c=.ln)
|
LINTS = $(C_SRCS:.c=.ln)
|
||||||
|
|
||||||
# 'all' target first in case the enclosing Makefile didn't define any target
|
|
||||||
|
|
||||||
all:
|
|
||||||
|
|
||||||
filter: dummy
|
filter: dummy
|
||||||
@$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
|
@$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
|
||||||
|
|
||||||
|
@ -157,7 +62,7 @@ filter: dummy
|
||||||
$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
|
$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
|
||||||
|
|
||||||
.rc.res:
|
.rc.res:
|
||||||
$(LDPATH) $(RC) $(RCFLAGS) -fo$@ $<
|
$(LDPATH) $(WRC) $(RCFLAGS) -fo$@ $<
|
||||||
|
|
||||||
.idl.h:
|
.idl.h:
|
||||||
$(WIDL) $(IDLFLAGS) -h -H $@ $<
|
$(WIDL) $(IDLFLAGS) -h -H $@ $<
|
||||||
|
|
|
@ -0,0 +1,90 @@
|
||||||
|
# @configure_input@ -*-Makefile-*-
|
||||||
|
|
||||||
|
prefix = @prefix@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
bindir = @bindir@
|
||||||
|
libdir = @libdir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
datadir = @datadir@
|
||||||
|
infodir = @infodir@
|
||||||
|
mandir = @mandir@
|
||||||
|
sysconfdir = @sysconfdir@
|
||||||
|
fontdir = $(datadir)/wine/fonts
|
||||||
|
includedir = @includedir@/wine
|
||||||
|
dlldir = @libdir@/wine
|
||||||
|
fakedlldir = $(dlldir)/fakedlls
|
||||||
|
TOPSRCDIR = @top_srcdir@
|
||||||
|
TOPOBJDIR = @top_builddir@
|
||||||
|
SRCDIR = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
SHELL = /bin/sh
|
||||||
|
RM = rm -f
|
||||||
|
MV = mv
|
||||||
|
CC = @CC@
|
||||||
|
CROSSCC = @CROSSCC@
|
||||||
|
CFLAGS = @CFLAGS@
|
||||||
|
CPPFLAGS = @CPPFLAGS@
|
||||||
|
EXTRACFLAGS = @EXTRACFLAGS@
|
||||||
|
TARGETFLAGS = @TARGETFLAGS@
|
||||||
|
LIBS = @LIBS@
|
||||||
|
BISON = @BISON@
|
||||||
|
FLEX = @FLEX@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
|
LIBEXT = @LIBEXT@
|
||||||
|
DLLEXT = @DLLEXT@
|
||||||
|
FAKEEXT = $(DLLEXT:.so=.fake)
|
||||||
|
TOOLSEXT = @TOOLSEXT@
|
||||||
|
IMPLIBEXT = @IMPLIBEXT@
|
||||||
|
DLLTOOL = @DLLTOOL@
|
||||||
|
DLLWRAP = @DLLWRAP@
|
||||||
|
AR = @AR@
|
||||||
|
ARFLAGS = @ARFLAGS@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
STRIP = @STRIP@
|
||||||
|
LN_S = @LN_S@
|
||||||
|
TOOLSDIR = @TOOLSDIR@
|
||||||
|
LDFLAGS = @LDFLAGS@
|
||||||
|
PRELINK = @PRELINK@
|
||||||
|
LINT = @LINT@
|
||||||
|
LINTFLAGS = @LINTFLAGS@
|
||||||
|
FONTFORGE = @FONTFORGE@
|
||||||
|
RSVG = @RSVG@
|
||||||
|
CONVERT = @CONVERT@
|
||||||
|
ICOTOOL = @ICOTOOL@
|
||||||
|
CROSSTARGET = @CROSSTARGET@
|
||||||
|
CROSSAR = $(CROSSTARGET)-ar
|
||||||
|
CROSSRANLIB = $(CROSSTARGET)-ranlib
|
||||||
|
MKINSTALLDIRS = $(TOPSRCDIR)/tools/mkinstalldirs -m 755
|
||||||
|
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
|
||||||
|
BUILDIMAGE = $(TOPSRCDIR)/tools/buildimage
|
||||||
|
C2MAN = $(TOPSRCDIR)/tools/c2man.pl
|
||||||
|
RUNTEST = $(TOPSRCDIR)/tools/runtest
|
||||||
|
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
|
||||||
|
MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
|
||||||
|
RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
|
||||||
|
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
|
||||||
|
WIDL = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
|
||||||
|
WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
|
||||||
|
WMC = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
|
||||||
|
WRC = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
|
||||||
|
LIBPORT = $(TOPOBJDIR)/libs/port/libwine_port.a
|
||||||
|
LIBWPP = $(TOPOBJDIR)/libs/wpp/libwpp.a
|
||||||
|
LIBWINE = -L$(TOPOBJDIR)/libs/wine -lwine
|
||||||
|
WINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR) @UNWINDFLAGS@
|
||||||
|
CROSSWINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR) --lib-suffix=.cross.a
|
||||||
|
LDPATH = @LDPATH@
|
||||||
|
LDRPATH_INSTALL = @LDRPATH_INSTALL@
|
||||||
|
LDRPATH_LOCAL = @LDRPATH_LOCAL@
|
||||||
|
INSTALL = @INSTALL@ $(INSTALL_FLAGS)
|
||||||
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
|
||||||
|
prog_manext = 1
|
||||||
|
api_manext = 3w
|
||||||
|
conf_manext = 5
|
||||||
|
@SET_MAKE@
|
||||||
|
|
||||||
|
all:
|
||||||
|
|
||||||
|
# End of common header
|
|
@ -18,11 +18,6 @@
|
||||||
# sgmlpages: compile sgml source for the Wine API Guide
|
# sgmlpages: compile sgml source for the Wine API Guide
|
||||||
# xmlpages: compile xml source for the Wine API Guide
|
# xmlpages: compile xml source for the Wine API Guide
|
||||||
|
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = .
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
|
|
||||||
# Sub-directories that don't have a makefile
|
# Sub-directories that don't have a makefile
|
||||||
EXTRASUBDIRS = dlls libs programs
|
EXTRASUBDIRS = dlls libs programs
|
||||||
|
|
||||||
|
|
|
@ -146,7 +146,7 @@ AC_DEFUN([WINE_CONFIG_HELPERS],
|
||||||
.INIT: Makefile
|
.INIT: Makefile
|
||||||
.MAKEFILEDEPS:
|
.MAKEFILEDEPS:
|
||||||
all: Makefile
|
all: Makefile
|
||||||
Makefile: Makefile.in Make.rules config.status
|
Makefile: Makefile.in Make.vars.in Make.rules config.status
|
||||||
@./config.status Make.tmp Makefile"
|
@./config.status Make.tmp Makefile"
|
||||||
|
|
||||||
AC_SUBST(ALL_WINETEST_DEPENDS,["# Test binaries"])
|
AC_SUBST(ALL_WINETEST_DEPENDS,["# Test binaries"])
|
||||||
|
@ -171,12 +171,12 @@ wine_fn_all_dir_rules ()
|
||||||
$[1]/__clean__: $[1]/Makefile
|
$[1]/__clean__: $[1]/Makefile
|
||||||
@cd $[1] && \$(MAKE) clean
|
@cd $[1] && \$(MAKE) clean
|
||||||
\$(RM) $[1]/Makefile
|
\$(RM) $[1]/Makefile
|
||||||
$[1]/Makefile: $[1]/Makefile.in config.status $[2]
|
$[1]/Makefile: $[1]/Makefile.in Make.vars.in config.status $[2]
|
||||||
@./config.status --file $[1]/Makefile && cd $[1] && \$(MAKE) depend
|
@./config.status --file $[1]/Makefile:Make.vars.in:$[1]/Makefile.in && cd $[1] && \$(MAKE) depend
|
||||||
depend: $[1]/__depend__
|
depend: $[1]/__depend__
|
||||||
.PHONY: $[1]/__depend__
|
.PHONY: $[1]/__depend__
|
||||||
$[1]/__depend__: \$(MAKEDEP) dummy
|
$[1]/__depend__: \$(MAKEDEP) dummy
|
||||||
@./config.status --file $[1]/Makefile && cd $[1] && \$(MAKE) depend"
|
@./config.status --file $[1]/Makefile:Make.vars.in:$[1]/Makefile.in && cd $[1] && \$(MAKE) depend"
|
||||||
}
|
}
|
||||||
|
|
||||||
wine_fn_config_makefile ()
|
wine_fn_config_makefile ()
|
||||||
|
|
|
@ -14100,7 +14100,7 @@ ALL_MAKEFILE_DEPENDS="
|
||||||
.INIT: Makefile
|
.INIT: Makefile
|
||||||
.MAKEFILEDEPS:
|
.MAKEFILEDEPS:
|
||||||
all: Makefile
|
all: Makefile
|
||||||
Makefile: Makefile.in Make.rules config.status
|
Makefile: Makefile.in Make.vars.in Make.rules config.status
|
||||||
@./config.status Make.tmp Makefile"
|
@./config.status Make.tmp Makefile"
|
||||||
|
|
||||||
ALL_WINETEST_DEPENDS="# Test binaries"
|
ALL_WINETEST_DEPENDS="# Test binaries"
|
||||||
|
@ -14127,12 +14127,12 @@ wine_fn_all_dir_rules ()
|
||||||
$1/__clean__: $1/Makefile
|
$1/__clean__: $1/Makefile
|
||||||
@cd $1 && \$(MAKE) clean
|
@cd $1 && \$(MAKE) clean
|
||||||
\$(RM) $1/Makefile
|
\$(RM) $1/Makefile
|
||||||
$1/Makefile: $1/Makefile.in config.status $2
|
$1/Makefile: $1/Makefile.in Make.vars.in config.status $2
|
||||||
@./config.status --file $1/Makefile && cd $1 && \$(MAKE) depend
|
@./config.status --file $1/Makefile:Make.vars.in:$1/Makefile.in && cd $1 && \$(MAKE) depend
|
||||||
depend: $1/__depend__
|
depend: $1/__depend__
|
||||||
.PHONY: $1/__depend__
|
.PHONY: $1/__depend__
|
||||||
$1/__depend__: \$(MAKEDEP) dummy
|
$1/__depend__: \$(MAKEDEP) dummy
|
||||||
@./config.status --file $1/Makefile && cd $1 && \$(MAKE) depend"
|
@./config.status --file $1/Makefile:Make.vars.in:$1/Makefile.in && cd $1 && \$(MAKE) depend"
|
||||||
}
|
}
|
||||||
|
|
||||||
wine_fn_config_makefile ()
|
wine_fn_config_makefile ()
|
||||||
|
@ -15053,7 +15053,7 @@ wine_fn_config_tool tools/wrc
|
||||||
ac_config_commands="$ac_config_commands Makefile"
|
ac_config_commands="$ac_config_commands Makefile"
|
||||||
|
|
||||||
|
|
||||||
ac_config_files="$ac_config_files Make.tmp:Makefile.in"
|
ac_config_files="$ac_config_files Make.tmp:Make.vars.in:Makefile.in"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -15802,7 +15802,7 @@ do
|
||||||
"dlls/Makeimplib.rules") CONFIG_FILES="$CONFIG_FILES dlls/Makeimplib.rules" ;;
|
"dlls/Makeimplib.rules") CONFIG_FILES="$CONFIG_FILES dlls/Makeimplib.rules" ;;
|
||||||
"programs/Makeprog.rules") CONFIG_FILES="$CONFIG_FILES programs/Makeprog.rules" ;;
|
"programs/Makeprog.rules") CONFIG_FILES="$CONFIG_FILES programs/Makeprog.rules" ;;
|
||||||
"Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;;
|
"Makefile") CONFIG_COMMANDS="$CONFIG_COMMANDS Makefile" ;;
|
||||||
"Make.tmp") CONFIG_FILES="$CONFIG_FILES Make.tmp:Makefile.in" ;;
|
"Make.tmp") CONFIG_FILES="$CONFIG_FILES Make.tmp:Make.vars.in:Makefile.in" ;;
|
||||||
|
|
||||||
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
|
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -2848,7 +2848,7 @@ _WINE_EOF
|
||||||
AS_ERROR([could not create Makefile])
|
AS_ERROR([could not create Makefile])
|
||||||
}])
|
}])
|
||||||
|
|
||||||
AC_CONFIG_FILES([Make.tmp:Makefile.in])
|
AC_CONFIG_FILES([Make.tmp:Make.vars.in:Makefile.in])
|
||||||
|
|
||||||
dnl Some final makefile rules
|
dnl Some final makefile rules
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = acledit.dll
|
MODULE = acledit.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = aclui.dll
|
MODULE = aclui.dll
|
||||||
IMPORTLIB = aclui
|
IMPORTLIB = aclui
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = activeds.dll
|
MODULE = activeds.dll
|
||||||
IMPORTLIB = activeds
|
IMPORTLIB = activeds
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = actxprxy.dll
|
MODULE = actxprxy.dll
|
||||||
IMPORTS = uuid oleaut32 ole32 rpcrt4
|
IMPORTS = uuid oleaut32 ole32 rpcrt4
|
||||||
EXTRADEFS = -DREGISTER_PROXY_DLL -DPROXY_DELEGATION
|
EXTRADEFS = -DREGISTER_PROXY_DLL -DPROXY_DELEGATION
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = adsiid
|
MODULE = adsiid
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
EXTRADEFS = -D_ADVAPI32_
|
EXTRADEFS = -D_ADVAPI32_
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = advapi32.dll
|
MODULE = advapi32.dll
|
||||||
IMPORTLIB = advapi32
|
IMPORTLIB = advapi32
|
||||||
DELAYIMPORTS = rpcrt4
|
DELAYIMPORTS = rpcrt4
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = advapi32.dll
|
TESTDLL = advapi32.dll
|
||||||
IMPORTS = ole32 advapi32
|
IMPORTS = ole32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = advpack.dll
|
MODULE = advpack.dll
|
||||||
IMPORTLIB = advpack
|
IMPORTLIB = advpack
|
||||||
IMPORTS = ole32 setupapi version advapi32
|
IMPORTS = ole32 setupapi version advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = advpack.dll
|
TESTDLL = advpack.dll
|
||||||
IMPORTS = cabinet advapi32
|
IMPORTS = cabinet advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = amstream.dll
|
MODULE = amstream.dll
|
||||||
IMPORTS = strmiids uuid ole32 advapi32
|
IMPORTS = strmiids uuid ole32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = amstream.dll
|
TESTDLL = amstream.dll
|
||||||
IMPORTS = quartz ddraw oleaut32 ole32 user32
|
IMPORTS = quartz ddraw oleaut32 ole32 user32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = appwiz.cpl
|
MODULE = appwiz.cpl
|
||||||
IMPORTS = comctl32 advapi32 shell32 user32 comdlg32
|
IMPORTS = comctl32 advapi32 shell32 user32 comdlg32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = atl.dll
|
MODULE = atl.dll
|
||||||
IMPORTLIB = atl
|
IMPORTLIB = atl
|
||||||
IMPORTS = uuid ole32 oleaut32 user32 gdi32 advapi32
|
IMPORTS = uuid ole32 oleaut32 user32 gdi32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = atl.dll
|
TESTDLL = atl.dll
|
||||||
IMPORTS = uuid atl oleaut32 ole32 rpcrt4 user32 gdi32 advapi32
|
IMPORTS = uuid atl oleaut32 ole32 rpcrt4 user32 gdi32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = authz.dll
|
MODULE = authz.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = avicap32.dll
|
MODULE = avicap32.dll
|
||||||
IMPORTLIB = avicap32
|
IMPORTLIB = avicap32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = avifil32.dll
|
MODULE = avifil32.dll
|
||||||
IMPORTLIB = avifil32
|
IMPORTLIB = avifil32
|
||||||
IMPORTS = uuid msacm32 msvfw32 winmm ole32 user32 advapi32
|
IMPORTS = uuid msacm32 msvfw32 winmm ole32 user32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = avifil32.dll
|
TESTDLL = avifil32.dll
|
||||||
IMPORTS = avifil32
|
IMPORTS = avifil32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = avifile.dll16
|
MODULE = avifile.dll16
|
||||||
IMPORTS = avifil32
|
IMPORTS = avifil32
|
||||||
EXTRADLLFLAGS = -m16 -Wb,--main-module,avifil32.dll
|
EXTRADLLFLAGS = -m16 -Wb,--main-module,avifil32.dll
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = avrt.dll
|
MODULE = avrt.dll
|
||||||
IMPORTLIB = avrt
|
IMPORTLIB = avrt
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = bcrypt.dll
|
MODULE = bcrypt.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = browseui.dll
|
MODULE = browseui.dll
|
||||||
IMPORTS = uuid ole32 user32 advapi32
|
IMPORTS = uuid ole32 user32 advapi32
|
||||||
EXTRADEFS = -DCOM_NO_WINDOWS_H
|
EXTRADEFS = -DCOM_NO_WINDOWS_H
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = browseui.dll
|
TESTDLL = browseui.dll
|
||||||
IMPORTS = ole32
|
IMPORTS = ole32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cabinet.dll
|
MODULE = cabinet.dll
|
||||||
IMPORTLIB = cabinet
|
IMPORTLIB = cabinet
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = cabinet.dll
|
TESTDLL = cabinet.dll
|
||||||
IMPORTS = cabinet
|
IMPORTS = cabinet
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = capi2032.dll
|
MODULE = capi2032.dll
|
||||||
IMPORTLIB = capi2032
|
IMPORTLIB = capi2032
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cards.dll
|
MODULE = cards.dll
|
||||||
IMPORTLIB = cards
|
IMPORTLIB = cards
|
||||||
IMPORTS = user32 gdi32
|
IMPORTS = user32 gdi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cfgmgr32.dll
|
MODULE = cfgmgr32.dll
|
||||||
IMPORTLIB = cfgmgr32
|
IMPORTLIB = cfgmgr32
|
||||||
IMPORTS = setupapi
|
IMPORTS = setupapi
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = clusapi.dll
|
MODULE = clusapi.dll
|
||||||
IMPORTLIB = clusapi
|
IMPORTLIB = clusapi
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = comcat.dll
|
MODULE = comcat.dll
|
||||||
IMPORTS = uuid ole32 user32 advapi32
|
IMPORTS = uuid ole32 user32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = comcat.dll
|
TESTDLL = comcat.dll
|
||||||
IMPORTS = ole32 advapi32
|
IMPORTS = ole32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
EXTRADEFS = -D_COMCTL32_
|
EXTRADEFS = -D_COMCTL32_
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = comctl32.dll
|
MODULE = comctl32.dll
|
||||||
IMPORTLIB = comctl32
|
IMPORTLIB = comctl32
|
||||||
IMPORTS = uuid user32 gdi32 advapi32
|
IMPORTS = uuid user32 gdi32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = comctl32.dll
|
TESTDLL = comctl32.dll
|
||||||
IMPORTS = comctl32 ole32 user32 gdi32 advapi32
|
IMPORTS = comctl32 ole32 user32 gdi32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = comdlg32.dll
|
MODULE = comdlg32.dll
|
||||||
IMPORTLIB = comdlg32
|
IMPORTLIB = comdlg32
|
||||||
IMPORTS = uuid shell32 shlwapi comctl32 winspool user32 gdi32 advapi32
|
IMPORTS = uuid shell32 shlwapi comctl32 winspool user32 gdi32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = comdlg32.dll
|
TESTDLL = comdlg32.dll
|
||||||
IMPORTS = comdlg32 winspool user32 gdi32
|
IMPORTS = comdlg32 winspool user32 gdi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = comm.drv16
|
MODULE = comm.drv16
|
||||||
EXTRADLLFLAGS = -m16
|
EXTRADLLFLAGS = -m16
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = commdlg.dll16
|
MODULE = commdlg.dll16
|
||||||
IMPORTS = comdlg32 user32 gdi32
|
IMPORTS = comdlg32 user32 gdi32
|
||||||
EXTRADLLFLAGS = -m16 -Wb,--main-module,comdlg32.dll
|
EXTRADLLFLAGS = -m16 -Wb,--main-module,comdlg32.dll
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = compobj.dll16
|
MODULE = compobj.dll16
|
||||||
IMPORTS = uuid ole32 advapi32
|
IMPORTS = uuid ole32 advapi32
|
||||||
EXTRADLLFLAGS = -m16 -Wb,--main-module,ole32.dll
|
EXTRADLLFLAGS = -m16 -Wb,--main-module,ole32.dll
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = compstui.dll
|
MODULE = compstui.dll
|
||||||
IMPORTLIB = compstui
|
IMPORTLIB = compstui
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = credui.dll
|
MODULE = credui.dll
|
||||||
IMPORTLIB = credui
|
IMPORTLIB = credui
|
||||||
IMPORTS = comctl32 user32 advapi32
|
IMPORTS = comctl32 user32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = credui.dll
|
TESTDLL = credui.dll
|
||||||
IMPORTS = credui
|
IMPORTS = credui
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = crtdll.dll
|
MODULE = crtdll.dll
|
||||||
IMPORTLIB = crtdll
|
IMPORTLIB = crtdll
|
||||||
IMPORTS = msvcrt
|
IMPORTS = msvcrt
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
EXTRADEFS = -D_CRYPT32_
|
EXTRADEFS = -D_CRYPT32_
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = crypt32.dll
|
MODULE = crypt32.dll
|
||||||
IMPORTLIB = crypt32
|
IMPORTLIB = crypt32
|
||||||
IMPORTS = user32 advapi32
|
IMPORTS = user32 advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = crypt32.dll
|
TESTDLL = crypt32.dll
|
||||||
IMPORTS = crypt32 advapi32
|
IMPORTS = crypt32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cryptdlg.dll
|
MODULE = cryptdlg.dll
|
||||||
IMPORTS = cryptui crypt32 wintrust user32 advapi32
|
IMPORTS = cryptui crypt32 wintrust user32 advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cryptdll.dll
|
MODULE = cryptdll.dll
|
||||||
IMPORTLIB = cryptdll
|
IMPORTLIB = cryptdll
|
||||||
IMPORTS = advapi32
|
IMPORTS = advapi32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cryptnet.dll
|
MODULE = cryptnet.dll
|
||||||
IMPORTLIB = cryptnet
|
IMPORTLIB = cryptnet
|
||||||
IMPORTS = crypt32
|
IMPORTS = crypt32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = cryptnet.dll
|
TESTDLL = cryptnet.dll
|
||||||
IMPORTS = cryptnet crypt32
|
IMPORTS = cryptnet crypt32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = cryptui.dll
|
MODULE = cryptui.dll
|
||||||
IMPORTS = uuid crypt32 ole32 comctl32 comdlg32 user32 gdi32 advapi32
|
IMPORTS = uuid crypt32 ole32 comctl32 comdlg32 user32 gdi32 advapi32
|
||||||
DELAYIMPORTS = wintrust urlmon
|
DELAYIMPORTS = wintrust urlmon
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = cryptui.dll
|
TESTDLL = cryptui.dll
|
||||||
IMPORTS = cryptui crypt32 user32
|
IMPORTS = cryptui crypt32 user32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = ctapi32.dll
|
MODULE = ctapi32.dll
|
||||||
IMPORTS = advapi32
|
IMPORTS = advapi32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = ctl3d.dll16
|
MODULE = ctl3d.dll16
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
EXTRADLLFLAGS = -m16 -Wb,--main-module,ctl3d32.dll
|
EXTRADLLFLAGS = -m16 -Wb,--main-module,ctl3d32.dll
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = ctl3d32.dll
|
MODULE = ctl3d32.dll
|
||||||
IMPORTLIB = ctl3d32
|
IMPORTLIB = ctl3d32
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = ctl3dv2.dll16
|
MODULE = ctl3dv2.dll16
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
EXTRADLLFLAGS = -m16 -Wb,--main-module,ctl3d32.dll
|
EXTRADLLFLAGS = -m16 -Wb,--main-module,ctl3d32.dll
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3d10.dll
|
MODULE = d3d10.dll
|
||||||
IMPORTLIB = d3d10
|
IMPORTLIB = d3d10
|
||||||
IMPORTS = dxguid uuid d3d10core d3dcompiler dxgi
|
IMPORTS = dxguid uuid d3d10core d3dcompiler dxgi
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3d10.dll
|
TESTDLL = d3d10.dll
|
||||||
IMPORTS = d3d10
|
IMPORTS = d3d10
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3d10core.dll
|
MODULE = d3d10core.dll
|
||||||
IMPORTLIB = d3d10core
|
IMPORTLIB = d3d10core
|
||||||
IMPORTS = dxguid uuid dxgi
|
IMPORTS = dxguid uuid dxgi
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3d10core.dll
|
TESTDLL = d3d10core.dll
|
||||||
IMPORTS = d3d10core dxgi
|
IMPORTS = d3d10core dxgi
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3d8.dll
|
MODULE = d3d8.dll
|
||||||
IMPORTLIB = d3d8
|
IMPORTLIB = d3d8
|
||||||
IMPORTS = dxguid uuid wined3d
|
IMPORTS = dxguid uuid wined3d
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3d8.dll
|
TESTDLL = d3d8.dll
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3d9.dll
|
MODULE = d3d9.dll
|
||||||
IMPORTLIB = d3d9
|
IMPORTLIB = d3d9
|
||||||
IMPORTS = dxguid uuid wined3d
|
IMPORTS = dxguid uuid wined3d
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3d9.dll
|
TESTDLL = d3d9.dll
|
||||||
IMPORTS = user32
|
IMPORTS = user32
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_33.dll
|
MODULE = d3dcompiler_33.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_34.dll
|
MODULE = d3dcompiler_34.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_35.dll
|
MODULE = d3dcompiler_35.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_36.dll
|
MODULE = d3dcompiler_36.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_37.dll
|
MODULE = d3dcompiler_37.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_38.dll
|
MODULE = d3dcompiler_38.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_39.dll
|
MODULE = d3dcompiler_39.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_40.dll
|
MODULE = d3dcompiler_40.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_41.dll
|
MODULE = d3dcompiler_41.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_42.dll
|
MODULE = d3dcompiler_42.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dcompiler_43.dll
|
MODULE = d3dcompiler_43.dll
|
||||||
IMPORTLIB = d3dcompiler
|
IMPORTLIB = d3dcompiler
|
||||||
IMPORTS = dxguid uuid
|
IMPORTS = dxguid uuid
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3dcompiler_43.dll
|
TESTDLL = d3dcompiler_43.dll
|
||||||
IMPORTS = d3dcompiler
|
IMPORTS = d3dcompiler
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dim.dll
|
MODULE = d3dim.dll
|
||||||
IMPORTLIB = d3dim
|
IMPORTLIB = d3dim
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3drm.dll
|
MODULE = d3drm.dll
|
||||||
IMPORTLIB = d3drm
|
IMPORTLIB = d3drm
|
||||||
IMPORTS = dxguid uuid d3dxof
|
IMPORTS = dxguid uuid d3dxof
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
TESTDLL = d3drm.dll
|
TESTDLL = d3drm.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_33.dll
|
MODULE = d3dx10_33.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_34.dll
|
MODULE = d3dx10_34.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_35.dll
|
MODULE = d3dx10_35.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_36.dll
|
MODULE = d3dx10_36.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_37.dll
|
MODULE = d3dx10_37.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_38.dll
|
MODULE = d3dx10_38.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_39.dll
|
MODULE = d3dx10_39.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_40.dll
|
MODULE = d3dx10_40.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_41.dll
|
MODULE = d3dx10_41.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_42.dll
|
MODULE = d3dx10_42.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx10_43.dll
|
MODULE = d3dx10_43.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_24.dll
|
MODULE = d3dx9_24.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_25.dll
|
MODULE = d3dx9_25.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_26.dll
|
MODULE = d3dx9_26.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_27.dll
|
MODULE = d3dx9_27.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_28.dll
|
MODULE = d3dx9_28.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
TOPSRCDIR = @top_srcdir@
|
|
||||||
TOPOBJDIR = ../..
|
|
||||||
SRCDIR = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
MODULE = d3dx9_29.dll
|
MODULE = d3dx9_29.dll
|
||||||
IMPORTS = d3d9
|
IMPORTS = d3d9
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue