Forked from
wine / wine
44530 commits behind the upstream repository.
-
Alexandre Julliard authored
Signed-off-by:
Alexandre Julliard <julliard@winehq.org>
Alexandre Julliard authoredSigned-off-by:
Alexandre Julliard <julliard@winehq.org>
make_makefiles 14.72 KiB
#!/usr/bin/perl -w
#
# Build the auto-generated parts of the Wine makefiles.
#
# Copyright 2006 Alexandre Julliard
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
use strict;
# Dlls and programs that are 16-bit specific
my %modules16 =
(
"ifsmgr.vxd" => 1,
"mmdevldr.vxd" => 1,
"monodebg.vxd" => 1,
"vdhcp.vxd" => 1,
"vmm.vxd" => 1,
"vnbt.vxd" => 1,
"vnetbios.vxd" => 1,
"vtdapi.vxd" => 1,
"vwin32.vxd" => 1,
"w32skrnl.dll" => 1,
"winevdm.exe" => 1,
"wow32.dll" => 1,
);
my %exported_wine_headers = (
"wine/debug.h" => 1,
"wine/exception.h" => 1,
"wine/library.h" => 1,
"wine/itss.idl" => 1,
"wine/svcctl.idl" => 1,
);
my %ignored_source_files = (
"dlls/wineps.drv/afm2c.c" => 1,
"dlls/wineps.drv/mkagl.c" => 1,
"include/config.h.in" => 1,
"include/stamp-h.in" => 1,
"programs/winetest/dist.rc" => 1,
"tools/makedep.c" => 1,
);
my @source_vars = (
"BISON_SRCS",
"C_SRCS",
"FONT_SRCS",
"HEADER_SRCS",
"IDL_SRCS",
"IN_SRCS",
"LEX_SRCS",
"MANPAGES",
"MC_SRCS",
"OBJC_SRCS",
"PO_SRCS",
"RC_SRCS",