mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
214 lines
5.6 KiB
Makefile
214 lines
5.6 KiB
Makefile
#
|
|
# 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) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
#
|
|
|
|
##########################################################################
|
|
# #
|
|
# STOP THE INSANITY #
|
|
# #
|
|
##########################################################################
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# Name: unixfe.mk
|
|
#
|
|
# Description: Makefile hackery shared across unix and unik-like
|
|
# Mozilla front ends.
|
|
#
|
|
# The purpose of this file is to STOP THE INSANITY that
|
|
# has become the XFE Makefile and that will soon be the
|
|
# gnomefe, qtfe, ybfe and foofe Makfiles.
|
|
#
|
|
# Anything that can be shared between the unix fes, should
|
|
# be shared. Always look here first before adding anything
|
|
# to the toolkit specific Makefiles, or you will suffer
|
|
# dearly.
|
|
#
|
|
# Author: Ramiro Estrugo <ramiro@netscape.com>
|
|
#
|
|
##########################################################################
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_JPEG
|
|
#
|
|
# The default usage for libjpeg is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_JPEG can be set to make Mozilla build using a 'native' libjpeg
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_JPEG_LIB
|
|
# XFE_JPEG_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_JPEG_LIB
|
|
# XFE_MKICONS_JPEG_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against jpeg if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_JPEG
|
|
|
|
XFE_JPEG_LIB =
|
|
XFE_JPEG_DSO = -ljpeg
|
|
XFE_JPEG_REQUIRES =
|
|
XFE_MKICONS_JPEG_LIB =
|
|
XFE_MKICONS_JPEG_DSO = -ljpeg
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_JPEG_DSO = $(JPEG_LIBS)
|
|
XFE_MKICONS_JPEG_DSO = $(JPEG_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
XFE_JPEG_LIB = $(DIST)/lib/libjpeg.a
|
|
XFE_JPEG_DSO =
|
|
XFE_JPEG_REQUIRES = jpeg
|
|
XFE_MKICONS_JPEG_LIB = $(DIST)/lib/libjpeg.a
|
|
XFE_MKICONS_JPEG_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_PNG
|
|
#
|
|
# The default usage for libpng is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_PNG can be set to make Mozilla build using a 'native' libpng
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_PNG_LIB
|
|
# XFE_PNG_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_PNG_LIB
|
|
# XFE_MKICONS_PNG_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against png if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_PNG
|
|
|
|
XFE_PNG_LIB =
|
|
XFE_PNG_DSO = -lpng
|
|
XFE_PNG_REQUIRES =
|
|
XFE_MKICONS_PNG_LIB =
|
|
XFE_MKICONS_PNG_DSO = -lpng
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_PNG_DSO = $(PNG_LIBS)
|
|
XFE_MKICONS_PNG_DSO = $(PNG_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
XFE_PNG_LIB = $(DIST)/lib/libpng.a
|
|
XFE_PNG_DSO =
|
|
XFE_PNG_REQUIRES = png
|
|
XFE_MKICONS_PNG_LIB = $(DIST)/lib/libpng.a
|
|
XFE_MKICONS_PNG_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# MOZ_NATIVE_ZLIB
|
|
#
|
|
# The default usage for libzlib is that its built as part of Mozilla.
|
|
#
|
|
# MOZ_NATIVE_ZLIB can be set to make Mozilla build using a 'native' libzlib
|
|
# as found in platforms such as Linux and IRIX.
|
|
#
|
|
# When built as part of Mozilla, it takes the name 'libzlib'
|
|
#
|
|
# The native zlib libs seem to be named 'libz' - at least on Linux.
|
|
#
|
|
# The FULL_STATIC_BUILD force the final Mozilla binary to be as fully
|
|
# staitc as possible - which includes zlib.
|
|
#
|
|
# Only one of the following gets set for linking the xfe:
|
|
#
|
|
# XFE_ZLIB_LIB
|
|
# XFE_ZLIB_DSO
|
|
#
|
|
# Only one of the following gets set for linking mkicons.
|
|
#
|
|
# XFE_MKICONS_ZLIB_LIB
|
|
# XFE_MKICONS_ZLIB_DSO
|
|
#
|
|
# We dont want to link mkicons dynamically against zlib if we dont have to.
|
|
# It breaks on many platforms.
|
|
#
|
|
#
|
|
##########################################################################
|
|
ifdef MOZ_NATIVE_ZLIB
|
|
|
|
XFE_ZLIB_LIB =
|
|
XFE_ZLIB_DSO = -lz
|
|
XFE_ZLIB_REQUIRES =
|
|
XFE_MKICONS_ZLIB_LIB =
|
|
XFE_MKICONS_ZLIB_DSO = -lz
|
|
|
|
ifdef USE_AUTOCONF
|
|
XFE_ZLIB_DSO = $(ZLIB_LIBS)
|
|
XFE_MKICONS_ZLIB_DSO = $(ZLIB_LIBS)
|
|
endif
|
|
|
|
else
|
|
|
|
ifdef FULL_STATIC_BUILD
|
|
|
|
XFE_ZLIB_LIB = $(DIST)/lib/libzlib.a
|
|
XFE_ZLIB_DSO =
|
|
XFE_ZLIB_REQUIRES = zlib
|
|
|
|
else
|
|
|
|
XFE_ZLIB_LIB =
|
|
XFE_ZLIB_DSO = -lzlib
|
|
XFE_ZLIB_REQUIRES = zlib
|
|
|
|
endif
|
|
|
|
XFE_MKICONS_ZLIB_LIB = $(DIST)/lib/libzlib.a
|
|
XFE_MKICONS_ZLIB_DSO =
|
|
|
|
endif
|
|
##########################################################################
|
|
|
|
# eof
|