#
# 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	= ../..
srcdir		= .
VPATH		= .

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=$(MOZ_APP_NAME)-nspr.pc $(MOZ_APP_NAME)-xpcom.pc \
	$(MOZ_APP_NAME)-js.pc $(MOZ_APP_NAME)-gtkmozembed.pc \
	$(MOZ_APP_NAME)-nss.pc $(MOZ_APP_NAME)-plugin.pc

GARBAGE	= $(pkg_config_files) mozilla-config

$(MOZ_APP_NAME)-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|%idldir%|$(idldir)|" \
	-e "s|%MOZILLA_VERSION%|$(MOZ_APP_VERSION)|" \
	-e "s|%DEFS%|$(_DEFS)|" \
	-e "s|%FULL_NSPR_LIBS%|$(FULL_NSPR_LIBS)|" \
	-e "s|%FULL_NSPR_CFLAGS%|$(FULL_NSPR_CFLAGS)|" > $@

$(MOZ_APP_NAME)-%.pc : mozilla-%.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|%MOZ_APP_NAME%|$(MOZ_APP_NAME)|" \
	-e "s|%MOZILLA_VERSION%|$(MOZ_APP_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:: $(MOZ_APP_NAME)-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:: $(MOZ_APP_NAME)-config
	$(SYSINSTALL) $(IFLAGS2) $< $(DESTDIR)$(bindir)

install:: $(pkg_config_files)
	chmod 644 $<
	$(SYSINSTALL) $(IFLAGS1) $(pkg_config_files) \
		$(DESTDIR)$(libdir)/pkgconfig
