annotate oldXMenu/Imakefile @ 30929:3d5ccbaddc59

Set to standard author/maintainer/keyword fields. Fine tuning to menu map appearance and operation, and added help. Remove `start' and `end' error messages when compiling. (ispell-choices-win-default-height): Fixed comment string. (ispell-dictionary-alist-1): Fixed regexp in castellano and castellano8 dictionaries. (ispell-dictionary-alist-3): Fixed regexp in francais dictionary. (ispell-dictionary-alist-4): Fixed regexp in francais-tex dictionary, added italiano dictionary. (ispell-skip-region-alist): Removed regexp thrashing when `-' is a word character (ispell-tex-skip-alists): Added psfig support. (ispell-skip-html): Renamed from ispell-skip-sgml. (ispell-begin-skip-region-regexp, ispell-skip-region) (ispell-minor-check): Improved html skipping support to skip across code, and recognize `&' commands without propper `;' syntax; (ispell-process-line): Fix alignment error when manually correcting spelling. (ispell): Fix comment string. (ispell-add-per-file-word-list): Always put word list on new line.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 17 Aug 2000 20:54:01 +0000
parents bbce331da1be
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
1 HEADERS = XMenu.h
Dave Love <fx@gnu.org>
parents:
diff changeset
2 LINTLIBS = ../lib/X/llib-lX.ln
Dave Love <fx@gnu.org>
parents:
diff changeset
3 INSTALLFLAGS = $(INSTINCFLAGS)
Dave Love <fx@gnu.org>
parents:
diff changeset
4 RANLIB = ranlib -t
Dave Love <fx@gnu.org>
parents:
diff changeset
5
Dave Love <fx@gnu.org>
parents:
diff changeset
6 SRCS = Activate.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
7 AddPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
8 AddSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
9 ChgPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
10 ChgSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
11 Create.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
12 DelPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
13 DelSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
14 Destroy.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
15 Error.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
16 EvHand.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
17 FindPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
18 FindSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
19 InsPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
20 InsSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
21 Internal.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
22 Locate.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
23 Post.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
24 Recomp.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
25 SetAEQ.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
26 SetFrz.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
27 SetPane.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
28 SetSel.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
29 XCrAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
30 XDelAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
31 XDestAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
32 XLookAssoc.c \
Dave Love <fx@gnu.org>
parents:
diff changeset
33 XMakeAssoc.c
Dave Love <fx@gnu.org>
parents:
diff changeset
34
Dave Love <fx@gnu.org>
parents:
diff changeset
35 OBJS = Activate.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
36 AddPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
37 AddSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
38 ChgPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
39 ChgSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
40 Create.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
41 DelPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
42 DelSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
43 Destroy.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
44 Error.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
45 EvHand.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
46 FindPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
47 FindSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
48 InsPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
49 InsSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
50 Internal.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
51 Locate.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
52 Post.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
53 Recomp.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
54 SetAEQ.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
55 SetFrz.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
56 SetPane.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
57 SetSel.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
58 XCrAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
59 XDelAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
60 XDestAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
61 XLookAssoc.o \
Dave Love <fx@gnu.org>
parents:
diff changeset
62 XMakeAssoc.o
Dave Love <fx@gnu.org>
parents:
diff changeset
63
Dave Love <fx@gnu.org>
parents:
diff changeset
64 #if DebugOldLibXMenu && ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
65 DebuggedAndProfiledLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
66 #else
Dave Love <fx@gnu.org>
parents:
diff changeset
67 # if DebugOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
68 DebuggedLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
69 # else
Dave Love <fx@gnu.org>
parents:
diff changeset
70 # if ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
71 ProfiledLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
72 # else
Dave Love <fx@gnu.org>
parents:
diff changeset
73 NormalLibraryObjectRule()
Dave Love <fx@gnu.org>
parents:
diff changeset
74 # endif
Dave Love <fx@gnu.org>
parents:
diff changeset
75 # endif
Dave Love <fx@gnu.org>
parents:
diff changeset
76 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
77
Dave Love <fx@gnu.org>
parents:
diff changeset
78 NormalLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
79 LintLibraryTarget(XMenu11,$(SRCS))
Dave Love <fx@gnu.org>
parents:
diff changeset
80 InstallLibrary(XMenu11,$(USRLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
81 #if InstallLintLibs
Dave Love <fx@gnu.org>
parents:
diff changeset
82 InstallLintLibrary(XMenu11,$(LINTLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
83 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
84 InstallMultiple($(HEADERS),$(INCDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
85
Dave Love <fx@gnu.org>
parents:
diff changeset
86 #if ProfileOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
87 ProfiledLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
88 InstallLibrary(XMenu11_p,$(USRLIBDIR))
Dave Love <fx@gnu.org>
parents:
diff changeset
89 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
90
Dave Love <fx@gnu.org>
parents:
diff changeset
91 #if DebugOldLibXMenu
Dave Love <fx@gnu.org>
parents:
diff changeset
92 DebuggedLibraryTarget(XMenu11,$(OBJS))
Dave Love <fx@gnu.org>
parents:
diff changeset
93 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
94
Dave Love <fx@gnu.org>
parents:
diff changeset
95 DependTarget()
Dave Love <fx@gnu.org>
parents:
diff changeset
96
Dave Love <fx@gnu.org>
parents:
diff changeset
97 NormalLintTarget($(SRCS))