mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
101 lines
2.9 KiB
Makefile
101 lines
2.9 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 Communicator client code,
|
|
# released March 31, 1998.
|
|
#
|
|
# 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):
|
|
#
|
|
|
|
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = build
|
|
PACKAGE_FILE = unix.pkg
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Hack to make sure that mozilla-config has the proper nspr dependencies
|
|
ifdef MOZ_NATIVE_NSPR
|
|
FULL_NSPR_CFLAGS=$(shell $(NSPR_CONFIG) --cflags)
|
|
FULL_NSPR_LIBS=$(shell $(NSPR_CONFIG) --libs)
|
|
else
|
|
FULL_NSPR_CFLAGS=-I$(includedir)/nspr
|
|
FULL_NSPR_LIBS=$(subst -L$(libdir),-L$(mozappdir),$(shell $(DEPTH)/nsprpub/config/nspr-config --libs))
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_GTK
|
|
SUPERWIN_LIBS=-lgtksuperwin
|
|
endif
|
|
|
|
_DEFS = $(subst \,\\\\\,$(ACDEFINES))
|
|
|
|
pkg_config_files=mozilla-nspr.pc mozilla-xpcom.pc mozilla-js.pc \
|
|
mozilla-gtkmozembed.pc mozilla-nss.pc \
|
|
mozilla-plugin.pc
|
|
|
|
GARBAGE = $(pkg_config_files) mozilla-config
|
|
|
|
mozilla-config:: mozilla-config.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
|
cat $< | sed \
|
|
-e "s|%prefix%|$(prefix)|" \
|
|
-e "s|%exec_prefix%|$(exec_prefix)|" \
|
|
-e "s|%includedir%|$(includedir)|" \
|
|
-e "s|%libdir%|$(mozappdir)|" \
|
|
-e "s|%MOZILLA_VERSION%|$(MOZILLA_VERSION)|" \
|
|
-e "s|%DEFS%|$(_DEFS)|" \
|
|
-e "s|%FULL_NSPR_LIBS%|$(FULL_NSPR_LIBS)|" \
|
|
-e "s|%FULL_NSPR_CFLAGS%|$(FULL_NSPR_CFLAGS)|" > $@
|
|
|
|
%.pc : %.pc.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
|
cat $< | sed \
|
|
-e "s|%prefix%|$(prefix)|" \
|
|
-e "s|%exec_prefix%|$(exec_prefix)|" \
|
|
-e "s|%includedir%|$(includedir)|" \
|
|
-e "s|%libdir%|$(mozappdir)|" \
|
|
-e "s|%MOZILLA_VERSION%|$(MOZILLA_VERSION)|" \
|
|
-e "s|%SUPERWIN_LIBS%|$(SUPERWIN_LIBS)|" \
|
|
-e "s|%DEFS%|$(_DEFS)|" \
|
|
-e "s|%FULL_NSPR_LIBS%|$(FULL_NSPR_LIBS)|" \
|
|
-e "s|%FULL_NSPR_CFLAGS%|$(FULL_NSPR_CFLAGS)|" > $@
|
|
|
|
libs:: mozilla-config
|
|
chmod 755 $<
|
|
$(INSTALL) -m 755 $< $(DIST)/bin
|
|
|
|
libs:: $(srcdir)/run-mozilla.sh $(pkg_config_files)
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
ifeq ($(OS_ARCH),OpenVMS)
|
|
libs:: vms/mozilla.com vms/install.com vms/getinfo.com
|
|
$(INSTALL) $? $(DIST)/bin
|
|
endif
|
|
|
|
install:: run-mozilla.sh
|
|
$(SYSINSTALL) $(IFLAGS2) $< $(DESTDIR)$(mozappdir)
|
|
|
|
install:: mozilla-config
|
|
$(SYSINSTALL) $(IFLAGS2) $< $(DESTDIR)$(bindir)
|
|
|
|
install:: $(pkg_config_files)
|
|
chmod 644 $<
|
|
$(SYSINSTALL) $(IFLAGS1) $(pkg_config_files) \
|
|
$(DESTDIR)$(libdir)/pkgconfig
|