# # The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is mozilla.org code. # # The Initial Developer of the Original Code is Sun Microsystems, # Inc. Portions created by Sun are # Copyright (C) 1999 Sun Microsystems, Inc. All # Rights Reserved. # # Contributor(s): ($#ARGV > 2) || die "Usage: make_mak.pl \n"; #Read CPP's to be recompiled if (open (MAK, $ARGV[0])) { $empty = 0; undef $/; @file_list=split(/\n/, ); close MAK; } else { $empty=1; } #Write new makefile open (MAK, ">".$ARGV[0]) || die "Can't open file $ARGV[0]: $!\n"; print MAK "# This file is generated automatically. Don't edit it !\n\n"; print MAK "TOP_DIR=$ARGV[2]\n"; print MAK "OBJ_DIR=$ARGV[3]\n"; print MAK "INCLUDES=$ARGV[4]\n"; print MAK "OS=$^O\n"; if ($^O !~ /Win32/) { print MAK "CC=".(($ENV{"CC"})?$ENV{"CC"}:"gcc")."\n"; print MAK "C_FLAGS=".(($ENV{"USE_SUN_WS"} eq "1")?"-c -g -KPIC":"-c -fPIC -fno-rtti")."\n"; } $ext = "mk"; if ($^O =~ /Win32/) { $ext = "mak"; } print MAK "include $ARGV[2]/build/compile.$ext\n"; print MAK "CPP="; if (!$empty) { print MAK " \\\n"; } else { print MAK "\n"; } for ($i=0; $file = $file_list[$i]; $i++) { chomp $file; if ($i < $#file_list) { print MAK "\t$file \\\n"; } else { print MAK "\t$file \n"; } } print MAK "all:"; if (!$empty) { print MAK "\n\t\$\($ARGV[1]\) \$\(CPP\)\n"; } close MAK;