69 lines
2.0 KiB
Makefile
69 lines
2.0 KiB
Makefile
#!gmake
|
|
#
|
|
# The contents of this file are subject to the Netscape Public License
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
# http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
# for the specific language governing rights and limitations under the
|
|
# NPL.
|
|
#
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
# Reserved.
|
|
|
|
DEPTH=../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
EXPORT_RESOURCE_SAMPLES = \
|
|
$(srcdir)/appshell.html \
|
|
$(srcdir)/status.xul \
|
|
$(srcdir)/status.html \
|
|
$(srcdir)/toolbar.xml \
|
|
$(srcdir)/BrowserInitPage.html \
|
|
$(srcdir)/contentframe.css \
|
|
$(srcdir)/contentframe.html \
|
|
$(srcdir)/contentframe.js \
|
|
$(srcdir)/contentframe.xul \
|
|
$(srcdir)/sidebar.html \
|
|
$(srcdir)/xul.css \
|
|
$(srcdir)/dialogs.css \
|
|
$(srcdir)/navigator.css \
|
|
$(srcdir)/navigator.xul \
|
|
$(srcdir)/navigator.js \
|
|
$(srcdir)/unknownContent.xul \
|
|
$(srcdir)/viewSource.xul \
|
|
$(srcdir)/viewsource.js \
|
|
$(srcdir)/openLocation.xul \
|
|
$(srcdir)/openLocation.js \
|
|
$(srcdir)/downloadProgress.xul \
|
|
$(srcdir)/downloadProgress.css \
|
|
$(srcdir)/navigator-shiny.css \
|
|
$(srcdir)/navigator-mozillazine0.css \
|
|
$(srcdir)/navigator-goofy.css \
|
|
$(srcdir)/navigator-test1.xul \
|
|
$(srcdir)/raindrops_light.gif \
|
|
$(srcdir)/skindemo.xul \
|
|
$(srcdir)/NetSupportUserPassword.xul \
|
|
$(srcdir)/NetSupportAlert.xul \
|
|
$(srcdir)/NetSupportConfirm.xul \
|
|
$(srcdir)/NetSupportConfirmCheck.xul \
|
|
$(srcdir)/alertl.gif \
|
|
$(srcdir)/errorI.gif \
|
|
$(srcdir)/messagel.gif \
|
|
$(srcdir)/questionl.gif \
|
|
$(NULL)
|
|
|
|
install::
|
|
$(INSTALL) $(EXPORT_RESOURCE_SAMPLES) $(DIST)/bin/res/samples
|
|
|