mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
57 lines
1.5 KiB
Bash
57 lines
1.5 KiB
Bash
#! /bin/sh
|
|
#
|
|
# The contents of this file are subject to the Netscape 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/NPL/
|
|
#
|
|
# 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 Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1999 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Generated by bootstrap.pl, do not edit
|
|
#
|
|
# This partial copy of mozilla/allmakefiles.sh is used in an
|
|
# attempt to use the --enable-standalone-modules mechanism to
|
|
# create a special module on the fly and do the right things
|
|
# to get that module to build.
|
|
#
|
|
# See mozilla/allmakefiles.sh for proper description of this file.
|
|
#
|
|
#
|
|
MAKEFILES=""
|
|
|
|
# add_makefiles - Shell function to add makefiles to MAKEFILES
|
|
add_makefiles() {
|
|
MAKEFILES="$MAKEFILES $*"
|
|
}
|
|
|
|
if [ "$srcdir" = "" ]; then
|
|
srcdir=.
|
|
fi
|
|
|
|
#
|
|
# Common makefiles used by everyone
|
|
#
|
|
add_makefiles "
|
|
Makefile
|
|
build/Makefile
|
|
build/unix/Makefile
|
|
build/unix/mozilla-config
|
|
config/Makefile
|
|
config/autoconf.mk
|
|
config/mkdepend/Makefile
|
|
config/doxygen.cfg
|
|
include/Makefile
|
|
"
|
|
|
|
#### Generated lines go after this line.
|