source: trunk/third/mozilla/xpinstall/Makefile.in @ 20192

Revision 20192, 1.5 KB checked in by rbasch, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20191, which included commits to RCS files with non-trunk default branches.
Line 
1#
2# The contents of this file are subject to the Netscape Public
3# License Version 1.1 (the "License"); you may not use this file
4# except in compliance with the License. You may obtain a copy of
5# the License at http://www.mozilla.org/NPL/
6#
7# Software distributed under the License is distributed on an "AS
8# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9# implied. See the License for the specific language governing
10# rights and limitations under the License.
11#
12# The Original Code is Mozilla Communicator client code,
13# released March 31, 1998.
14#
15# The Initial Developer of the Original Code is Netscape Communications
16# Corporation.  Portions created by Netscape are
17# Copyright (C) 1998 Netscape Communications Corporation. All
18# Rights Reserved.
19#
20# Contributor(s):
21#     Daniel Veditz <dveditz@netscape.com>
22#     Douglas Turner <dougt@netscape.com>
23#     Samir Gehani <sgehani@netscape.com>
24#
25
26DEPTH           = ..
27topsrcdir       = @top_srcdir@
28srcdir          = @srcdir@
29VPATH           = @srcdir@
30
31include $(DEPTH)/config/autoconf.mk
32
33MODULE          = xpinstall
34DIRS            = public res src stub cleanup
35
36ifdef MOZ_INSTALLER
37DIRS            += wizard/libxpnet
38ifdef MOZ_ENABLE_GTK
39DIRS            += wizard/unix/src2
40endif
41ifeq ($(OS_ARCH),WINNT)
42DIRS            += wizard/windows
43endif
44ifeq ($(OS_ARCH),OS2)
45DIRS            += wizard/os2
46endif
47endif
48
49include $(topsrcdir)/config/rules.mk
50
51packages:
52        $(MAKE) -C packager
53
54installer: packages
55ifeq ($(OS_ARCH),Linux)
56        $(MAKE) -C packager/unix
57endif
58ifeq ($(OS_ARCH),WINNT)
59        $(MAKE) -C wizard/windows/builder
60endif
61
62
Note: See TracBrowser for help on using the repository browser.