diff options
author | Jason Rumney <jasonr@gnu.org> | 2008-02-23 00:30:49 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2008-02-23 00:30:49 +0000 |
commit | 79d48c1a445d3e6ed6b9ce4f391cb279708e9477 (patch) | |
tree | 89ce662eed394e5017805e53ef15a99f981cca9a /lib-src | |
parent | cba3dac5b546fa81c60f1585e58bbbef98020b0c (diff) | |
download | emacs-79d48c1a445d3e6ed6b9ce4f391cb279708e9477.tar.gz emacs-79d48c1a445d3e6ed6b9ce4f391cb279708e9477.tar.bz2 emacs-79d48c1a445d3e6ed6b9ce4f391cb279708e9477.zip |
(MOUSE_SUPPORT): Remove duplicate tooltip.elc.
(MSDOS_SUPPORT, VMS_SUPPORT): Remove.
(OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
(lisp2): Add new languages.
($(DOC)): Use OTHER_PLATFORM_SUPPORT.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ChangeLog | 8 | ||||
-rw-r--r-- | lib-src/makefile.w32-in | 33 |
2 files changed, 26 insertions, 15 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 9dcc4910859..278dfb21cc6 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,11 @@ +2008-02-23 Jason Rumney <jasonr@gnu.org> + + * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc. + (MSDOS_SUPPORT, VMS_SUPPORT): Remove. + (OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too. + (lisp2): Add new languages. + ($(DOC)): Use OTHER_PLATFORM_SUPPORT. + 2008-02-22 Juanma Barranquero <lekktu@gmail.com> * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el, diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 0a25e5ec730..7bd23ee9edd 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -170,8 +170,7 @@ lispsource = ../lisp/ MOUSE_SUPPORT = \ $(lispsource)select.elc \ $(lispsource)scroll-bar.elc \ - $(lispsource)mouse.elc \ - $(lispsource)tooltip.elc + $(lispsource)mouse.elc WINNT_SUPPORT = \ $(lispsource)ls-lisp.elc \ $(lispsource)disp-table.elc \ @@ -179,16 +178,6 @@ WINNT_SUPPORT = \ $(lispsource)dos-w32.elc \ $(lispsource)w32-vars.elc \ $(lispsource)term/w32-win.elc - -# lisp files that are loaded up on other platforms -MSDOS_SUPPORT = \ - $(lispsource)dos-fns.elc \ - $(lispsource)dos-vars.elc \ - $(lispsource)international/ccl.elc \ - $(lispsource)international/codepage.elc -VMS_SUPPORT = \ - $(lispsource)vmsproc.el \ - $(lispsource)vms-patch.el TOOLTIP_SUPPORT = $(lispsource)tooltip.elc WINDOW_SUPPORT = \ $(lispsource)fringe.elc \ @@ -198,6 +187,18 @@ WINDOW_SUPPORT = \ $(lispsource)tool-bar.elc \ $(lispsource)mwheel.elc +# lisp files that are loaded up on other platforms +OTHER_PLATFORM_SUPPORT = \ + $(lispsource)dos-fns.elc \ + $(lispsource)dos-vars.elc \ + $(lispsource)international/ccl.elc \ + $(lispsource)international/codepage.elc \ + $(lispsource)vmsproc.el \ + $(lispsource)vms-patch.el \ + $(lispsource)x-dnd.elc \ + $(lispsource)term/x-win.elc + + lisp1= \ $(lispsource)abbrev.elc \ $(lispsource)buff-menu.elc \ @@ -250,6 +251,7 @@ lisp2 = \ $(lispsource)language/japanese.el \ $(lispsource)language/korean.el \ $(lispsource)language/lao.el \ + $(lispsource)language/cham.el \ $(lispsource)language/tai-viet.el \ $(lispsource)language/thai.el \ $(lispsource)language/tibetan.elc \ @@ -257,6 +259,8 @@ lisp2 = \ $(lispsource)language/misc-lang.el \ $(lispsource)language/utf-8-lang.el \ $(lispsource)language/georgian.el \ + $(lispsource)language/khmer.el \ + $(lispsource)language/burmese.el \ $(lispsource)paths.el \ $(lispsource)register.elc \ $(lispsource)replace.elc \ @@ -277,8 +281,6 @@ lisp2 = \ $(lispsource)vc-hooks.elc \ $(lispsource)ediff-hook.elc \ $(TOOLTIP_SUPPORT) \ - $(VMS_SUPPORT) \ - $(MSDOS_SUPPORT) \ $(WINNT_SUPPORT) \ $(WINDOW_SUPPORT) \ $(lispsource)widget.elc \ @@ -296,11 +298,12 @@ lisp2 = \ - $(DEL) temacs.exe DOC = DOC -$(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) +$(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) $(OTHER_PLATFORM_SUPPORT) - $(DEL) $(DOC) "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj) "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1) "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2) + "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(OTHER_PLATFORM_SUPPORT) $(CP) $(DOC) ../etc/DOC-X - mkdir "../src/$(OBJDIR)" - mkdir "../src/$(OBJDIR)/etc" |