forked from mozilla/releases-comm-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
allmakefiles.sh
executable file
·56 lines (45 loc) · 1.17 KB
/
allmakefiles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /bin/sh
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# allmakefiles.sh - List of all makefiles.
# Appends the list of makefiles to the variable, MAKEFILES.
# There is no need to rerun autoconf after adding makefiles.
# You only need to run configure.
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
comm-config.h
config/autoconf.mk
"
if [ "$MOZ_LDAP_XPCOM" ]; then
. "${srcdir}/ldap/makefiles.sh"
fi
if [ "$MOZ_MORK" ]; then
. "${srcdir}/db/makefiles.sh"
fi
if [ "$MOZ_COMPOSER" ]; then
. "${srcdir}/editor/ui/makefiles.sh"
fi
. "${srcdir}/mailnews/makefiles.sh"
if [ "$MOZ_CALENDAR" ]; then
. "${srcdir}/calendar/shared_makefiles.sh"
. "${srcdir}/calendar/lightning/makefiles.sh"
fi
#
# Application-specific makefiles
#
if test -f "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"; then
. "${srcdir}/${MOZ_BUILD_APP}/makefiles.sh"
fi