Updates to tmake for X11. Damn lock in CVS.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2002-02-09 18:43:37 +00:00
parent 1943c8778a
commit 49f7215796
5 changed files with 15 additions and 13 deletions

View File

@ -47,8 +47,6 @@
$fileflags =~ s/OLE/O/;
$fileflags =~ s/Socket/S/;
$fileflags =~ s/NotMSW/U/;
$fileflags =~ s/NotGTK/R/;
$fileflags =~ s/NotX/X/;
$fileflags =~ s/NotOS2/P/;
$fileflags =~ s/LowLevel/L/;

View File

@ -91,9 +91,9 @@ laywin.cpp Generic
listctrl.cpp Generic NotWin32
logg.cpp Generic
msgdlgg.cpp Generic Generic
notebook.cpp Generic NotWin32,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
notebook.cpp Generic NotWin32,NotGTK,NotOS2,NotMGL,NotX11,NotMac,NotMicro
numdlgg.cpp Generic
paletteg.cpp Generic NotMSW,NotX,NotX11,NotOS2,NotMGL,NotMac,NotMicro
paletteg.cpp Generic NotMSW,NotX,NotOS2,NotMGL,NotX11,NotMac,NotMicro
panelg.cpp Generic
printps.cpp Generic NotMSW,NotX11
prntdlgg.cpp Generic NotMSW
@ -106,9 +106,9 @@ scrlwing.cpp Generic
spinctlg.cpp Generic
splash.cpp Generic
splitter.cpp Generic
statline.cpp Generic NotMSW,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
statusbr.cpp Generic NotMGL,NotMicro
tabg.cpp Generic NotWin32,NotOS2,NotX11
statline.cpp Generic NotMSW,NotGTK,NotOS2,NotMGL,NotX11,NotMac,NotMicro
statusbr.cpp Generic NotMGL,NotX11,NotMicro
tabg.cpp Generic NotWin32,NotOS2
tbarsmpl.cpp Generic
textdlgg.cpp Generic
tipdlg.cpp Generic

View File

@ -16,7 +16,7 @@
$project{"COMMONOBJS"} .= "parser.o ";
foreach $file (sort keys %wxGeneric) {
next if $wxGeneric{$file} =~ /\bR\b/;
next if $wxGeneric{$file} =~ /\bNotGTK\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
@ -35,7 +35,7 @@
}
foreach $file (sort keys %wxCommon) {
next if $wxCommon{$file} =~ /\bR\b/;
next if $wxCommon{$file} =~ /\bNotGTK\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
@ -70,7 +70,7 @@
#! find all our headers
foreach $file (sort keys %wxWXINCLUDE) {
next if $wxWXINCLUDE{$file} =~ /\bR\b/;
next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/;
$project{"GTK_HEADERS"} .= $file . " "
}

View File

@ -99,6 +99,10 @@ do
echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..."
tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;;
x11.t)
echo "Generating $topdir/src/x11/files.lst for X11 and Configure..."
tmake -t x11 wxwin.pro -o $topdir/src/x11/files.lst;;
watmgl.t)
echo "Generating $topdir/src/mgl/makefile.wat for Watcom C++ and MGL+DOS..."
tmake -t watmgl wxwin.pro -o $topdir/src/mgl/makefile.wat;;

View File

@ -17,7 +17,7 @@
$project{"GUIOBJS"} .= "xmcombo.o ";
foreach $file (sort keys %wxGeneric) {
next if $wxGeneric{$file} =~ /\bX\b/;
next if $wxGeneric{$file} =~ /\bNotX\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
@ -26,7 +26,7 @@
}
foreach $file (sort keys %wxCommon) {
next if $wxCommon{$file} =~ /\bX\b/;
next if $wxCommon{$file} =~ /\bNotX\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
@ -56,7 +56,7 @@
}
#! find all our headers
foreach $file (sort keys %wxWXINCLUDE) {
next if $wxWXINCLUDE{$file} =~ /\bX\b/;
next if $wxWXINCLUDE{$file} =~ /\bNotX\b/;
$project{"MOTIF_HEADERS"} .= $file . " "
}