mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
75 lines
2.2 KiB
Makefile
75 lines
2.2 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):
|
|
#
|
|
|
|
DEPTH = ../../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
EXPORT_RESOURCE_CONTENT = \
|
|
$(srcdir)/nsPrefWindow.js \
|
|
$(srcdir)/pref.xul \
|
|
$(srcdir)/pref-advanced.xul \
|
|
$(srcdir)/pref-imageblocking.xul \
|
|
$(srcdir)/pref-appearance.xul \
|
|
$(srcdir)/pref-applications.xul \
|
|
$(srcdir)/pref-cache.xul \
|
|
$(srcdir)/pref-cache.js \
|
|
$(srcdir)/pref-charset.xul \
|
|
$(srcdir)/pref-charset.js \
|
|
$(srcdir)/pref-colors.xul \
|
|
$(srcdir)/pref-colors.js \
|
|
$(srcdir)/pref-themes.xul \
|
|
$(srcdir)/pref-composer.xul \
|
|
$(srcdir)/pref-composer.js \
|
|
$(srcdir)/pref-debug.xul \
|
|
$(srcdir)/pref-download.xul \
|
|
$(srcdir)/pref-editing.xul \
|
|
$(srcdir)/pref-fonts.xul \
|
|
$(srcdir)/pref-fonts.js \
|
|
$(srcdir)/pref-languages.xul \
|
|
$(srcdir)/pref-navigator.xul \
|
|
$(srcdir)/pref-navigator.js \
|
|
$(srcdir)/pref-offline.xul \
|
|
$(srcdir)/pref-policies.xul \
|
|
$(srcdir)/pref-proxies.js \
|
|
$(srcdir)/pref-proxies.xul \
|
|
$(srcdir)/pref-proxy-manual.xul \
|
|
$(srcdir)/pref-publish.xul \
|
|
$(srcdir)/pref-mousewheel.xul \
|
|
$(srcdir)/pref-mousewheel.js \
|
|
$(srcdir)/pref-wallet.xul \
|
|
$(srcdir)/pref-search.js \
|
|
$(srcdir)/pref-search.xul \
|
|
$(srcdir)/pref-smart_browsing.xul \
|
|
$(srcdir)/pref-smartupdate.xul \
|
|
$(srcdir)/prefutilities.js \
|
|
$(srcdir)/preftree.xul \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
install::
|
|
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/communicator/content/pref
|
|
|