aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog6
-rw-r--r--leim/makefile.w32-in8
2 files changed, 12 insertions, 2 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index f0ef48c9701..551d7e1cfda 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,9 @@
12005-06-04 Eli Zaretskii <eliz@gnu.org>
2
3 * makefile.w32-in (distclean): Fix a typo (colon was after
4 "clean").
5 (extraclean): New target, emulates Makefile.in.
6
12005-04-06 Kenichi Handa <handa@m17n.org> 72005-04-06 Kenichi Handa <handa@m17n.org>
2 8
3 * quail/sgml-input.el ("sgml"): Enable quail-completion by typing 9 * quail/sgml-input.el ("sgml"): Enable quail-completion by typing
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in
index 839d6129a31..8e0d8c3909c 100644
--- a/leim/makefile.w32-in
+++ b/leim/makefile.w32-in
@@ -1,6 +1,7 @@
1# -*- Makefile -*- for leim subdirectory in GNU Emacs on the Microsoft W32 API. 1# -*- Makefile -*- for leim subdirectory in GNU Emacs on the Microsoft W32 API.
2# Copyright (C) 1997, 2004 Electrotechnical Laboratory, JAPAN. 2# Copyright (C) 1997, 2004 Electrotechnical Laboratory, JAPAN.
3# Licensed to the Free Software Foundation. 3# Licensed to the Free Software Foundation.
4# Copyright (C) 2005, Free Software Foundation, Inc.
4 5
5# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
6 7
@@ -197,9 +198,12 @@ clean mostlyclean:
197 - $(FOREACH) $(MISC_DIC:.elc=.el) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) 198 - $(FOREACH) $(MISC_DIC:.elc=.el) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
198 - $(DEL) leim-list.el 199 - $(DEL) leim-list.el
199 200
200distclean clean: 201distclean: clean
201 - $(DELTREE) $(SUBDIRS) 202 - $(DELTREE) $(SUBDIRS)
202 - $(DEL) stamp-subdir 203 - $(DEL) stamp-subdir
203 204
204maintainer-clean: distclean 205maintainer-clean: distclean
205 - $(FOREACH) $(WORLD) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) 206 - $(FOREACH) $(WORLD) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
207
208extraclean: maintainer-clean
209 - $(FOREACH) *~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)