gecko-dev/extensions/irc/Makefile.in

131 строка
4.3 KiB
Makefile
Исходник Обычный вид История

1999-09-09 02:08:40 +04:00
#
# The contents of this file are subject to the Mozilla Public License
1999-09-06 22:17:54 +04:00
# 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/MPL/
#
# 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 IRC Extentions, including Basic Socket Library,
# and JSIRC Library.
#
# The Initial Developer of the Original Code is New Dimensions Consulting,
# Inc. Portions created by New Dimensions Consulting, Inc. Copyright (C) 1999
# New Dimenstions Consulting, Inc. All Rights Reserved.
#
# Contributor(s):
# Robert Ginda, rginda@ndcico.com, original author
1999-09-09 02:08:40 +04:00
#
# Large LED icons (green-*, red-*, yellow-*) and Marble background (xtal.jpg)
# Copyright (C) 1996, 1997 Jim Evins.
# http://www.clark.net/pub/evins/Icons/
#
# Other Icons came from "Anthony's WWW Images"
# http://www.cit.gu.edu.au/images/Images.html
#
DEPTH = ../..
1999-09-09 02:08:40 +04:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = xul
1999-09-09 02:08:40 +04:00
JSLIBFILES = \
$(srcdir)/js/lib/utils.js \
$(srcdir)/js/lib/events.js \
$(srcdir)/js/lib/connection-xpcom.js \
$(srcdir)/js/lib/command-manager.js \
1999-09-09 02:08:40 +04:00
$(srcdir)/js/lib/irc.js \
$(srcdir)/js/lib/irc-debug.js \
1999-09-09 02:08:40 +04:00
$(NULL)
XULLIBFILES = \
$(srcdir)/xul/lib/EntryHistory.js \
$(srcdir)/xul/lib/listbox.js \
$(srcdir)/xul/lib/munger.js \
1999-09-09 02:08:40 +04:00
$(NULL)
CONTENTFILES = \
$(srcdir)/xul/content/chatzilla.xul \
$(srcdir)/xul/content/commands.js \
$(srcdir)/xul/content/handlers.js \
$(srcdir)/xul/content/readprefs.js \
$(srcdir)/xul/content/static.js \
$(NULL)
SKINFILES = \
$(srcdir)/xul/skin/chatzilla.css \
$(srcdir)/xul/skin/output-default.css \
$(srcdir)/xul/skin/output-loud.css \
$(srcdir)/xul/skin/output-marble.css \
$(NULL)
IMAGEFILES = \
$(srcdir)/xul/skin/images/xtal.jpg \
$(srcdir)/xul/skin/images/blue_rock.gif \
$(srcdir)/xul/skin/images/face-frown.gif \
$(srcdir)/xul/skin/images/face-tongue.gif \
$(srcdir)/xul/skin/images/face-angry.gif \
$(srcdir)/xul/skin/images/face-screw.gif \
$(srcdir)/xul/skin/images/face-wink.gif \
$(srcdir)/xul/skin/images/face-cry.gif \
$(srcdir)/xul/skin/images/face-smile.gif \
$(srcdir)/xul/skin/images/face-dunno.gif \
$(srcdir)/xul/skin/images/face-surprise.gif \
$(srcdir)/xul/skin/images/is-op.gif \
$(srcdir)/xul/skin/images/isnt-op.gif \
$(srcdir)/xul/skin/images/is-voice.gif \
$(srcdir)/xul/skin/images/isnt-voice.gif \
$(srcdir)/xul/skin/images/view-activity.gif \
$(srcdir)/xul/skin/images/view-current.gif \
$(srcdir)/xul/skin/images/view-normal.gif \
$(NULL)
1999-09-09 02:08:40 +04:00
TESTFILES = \
$(srcdir)/xul/tests/test3.xul \
$(srcdir)/xul/tests/test3.css \
* Makefile.in, makefile.win Install new css files and alternate images. * README Removed some rot. * events.js Add ability to disable a hook without uninstalling it. Changed return value of addHook to the new hook object. Added getHook(name) method. Removed unused variable from routeEvent. * http.js, irc-debug.js Fixed spelling error. * irc.js network.onConnect no longer forwards the event to the server. Added getModeStr() method to the IRCChanMode object to retrieve the entire mode string for a channel. * utils.js Added Clone() constructor. Fixed problem in stringTrim. Added getStackTrace() ... Whoopee!! ... * bsconnection.c, bsutil.c Stop warnings on Mac. * index.html Change links to buttons to avoid troubles with other methods (href="javascript:f()" | (href="javascript:(void 0)" | href="#") onclick="f()") * test3-commands.js Wiring for /testdisplay and /msg commands. * test3-handlers.js Added debug message toggle menuitem handler. Added style change menu item handler. Added hack to work around bad KeyUp events. Factored out some logic from onInputCompleteLine into getObjectDetails (in test3-static.js) Added /testdisplay and /msg implementation. Fixed error message for unknown network passed to /network. Added topicDate to output of /topic command. updateNetwork and updateChannel calls sprinkled throughout to keep the statusbar current. Added topic change handler. * test3-static.js Post new messages top to bottom!! Disable the debug hook by default. Added getObjectDetails (factored out of test3-handlers.js) Added setOutputStyle to dynamically change the .cs file used for the output window. Implemented updateNetwork and updateChannel. Massive changes to .display methods make output window now display using a table, instead of spans (much faster, btw.) Fixed addHistory to trim the correct side of the output, regardless of print direction. * test3.css Factored out output window styles. * test3.xul Added menu options for debug message toggle and style changes. Added statusbar (table.) * test3-output-default.css, test3-output-marble.css Added output window stylesheets.
1999-10-10 01:26:52 +04:00
$(srcdir)/xul/tests/test3-output-default.css \
$(srcdir)/xul/tests/test3-output-marble.css \
$(srcdir)/xul/tests/test3-output-loud.css \
$(srcdir)/xul/tests/test3-static.js \
$(srcdir)/xul/tests/test3-handlers.js \
$(srcdir)/xul/tests/test3-commands.js \
$(srcdir)/xul/tests/test3-readprefs.js \
* Makefile.in, makefile.win Install new css files and alternate images. * README Removed some rot. * events.js Add ability to disable a hook without uninstalling it. Changed return value of addHook to the new hook object. Added getHook(name) method. Removed unused variable from routeEvent. * http.js, irc-debug.js Fixed spelling error. * irc.js network.onConnect no longer forwards the event to the server. Added getModeStr() method to the IRCChanMode object to retrieve the entire mode string for a channel. * utils.js Added Clone() constructor. Fixed problem in stringTrim. Added getStackTrace() ... Whoopee!! ... * bsconnection.c, bsutil.c Stop warnings on Mac. * index.html Change links to buttons to avoid troubles with other methods (href="javascript:f()" | (href="javascript:(void 0)" | href="#") onclick="f()") * test3-commands.js Wiring for /testdisplay and /msg commands. * test3-handlers.js Added debug message toggle menuitem handler. Added style change menu item handler. Added hack to work around bad KeyUp events. Factored out some logic from onInputCompleteLine into getObjectDetails (in test3-static.js) Added /testdisplay and /msg implementation. Fixed error message for unknown network passed to /network. Added topicDate to output of /topic command. updateNetwork and updateChannel calls sprinkled throughout to keep the statusbar current. Added topic change handler. * test3-static.js Post new messages top to bottom!! Disable the debug hook by default. Added getObjectDetails (factored out of test3-handlers.js) Added setOutputStyle to dynamically change the .cs file used for the output window. Implemented updateNetwork and updateChannel. Massive changes to .display methods make output window now display using a table, instead of spans (much faster, btw.) Fixed addHistory to trim the correct side of the output, regardless of print direction. * test3.css Factored out output window styles. * test3.xul Added menu options for debug message toggle and style changes. Added statusbar (table.) * test3-output-default.css, test3-output-marble.css Added output window stylesheets.
1999-10-10 01:26:52 +04:00
$(srcdir)/xul/tests/g_green.gif \
$(srcdir)/xul/tests/g_green_on.gif \
$(srcdir)/xul/tests/g_grey.gif \
$(srcdir)/xul/tests/g_grey_on.gif \
$(srcdir)/xul/tests/green-on.gif \
$(srcdir)/xul/tests/green-off.gif \
$(srcdir)/xul/tests/green-blink-1.gif \
$(srcdir)/xul/tests/yellow-on.gif \
$(srcdir)/xul/tests/xtal.jpg \
$(srcdir)/xul/tests/blue_rock.gif \
$(srcdir)/xul/tests/face-angry.gif \
$(srcdir)/xul/tests/face-cry.gif \
$(srcdir)/xul/tests/face-frown.gif \
$(srcdir)/xul/tests/face-smile.gif \
$(srcdir)/xul/tests/face-surprise.gif \
$(srcdir)/xul/tests/face-tongue.gif \
$(srcdir)/xul/tests/face-wink.gif \
$(srcdir)/xul/tests/face-screw.gif \
$(srcdir)/xul/tests/face-dunno.gif \
1999-09-09 02:08:40 +04:00
$(NULL)
include $(topsrcdir)/config/rules.mk
INSTALLROOT = $(DIST)/bin/chrome/chatzilla
install::
$(INSTALL) $(JSLIBFILES) $(INSTALLROOT)/content/default/lib/js
$(INSTALL) $(XULLIBFILES) $(INSTALLROOT)/content/default/lib/xul
$(INSTALL) $(CONTENTFILES) $(INSTALLROOT)/content/default
$(INSTALL) $(SKINFILES) $(INSTALLROOT)/skin/default
$(INSTALL) $(IMAGEFILES) $(INSTALLROOT)/skin/default/images