Mercurial > emacs
annotate msdos/mainmake @ 104155:87373993f3bd
* progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
(gdb-overlay-arrow-position): Renamed to
`gdb-disassembly-position'.
(gdb-overlay-arrow-position, gdb-thread-position)
(gdb-disassembly-position): Declare variables.
(gdb-wait-for-pending): Function now.
(gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
(gdb-emit-signal, gdb-buf-publisher): Declare before first use so
compilation goes smoothly.
(gdb, gdb-non-stop, gdb-buffers): New customization groups.
(gdb-non-stop-setting): New customization setting which replaces
`gdb-non-stop' so changing it doesn't break active GDB session.
(gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
(gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
(gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
(gdb-show-threads-by-default): New customization options.
(gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
routines.
(gdb-get-buffer-create): Send buffers update signal when they are
created.
(gdb-invalidate-locals, gdb-invalidate-registers)
(gdb-invalidate-breakpoints)
(gdb-invalidate-threads, gdb-invalidate-disassembly)
(gdb-invalidate-memory): Accept update signal.
(gdb-current-context-command): Use --frame option.
(gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
Implement `gdb-frame-number' selection logic.
(gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
whether to show GUD toolbar buttons.
(gdb-thread-exited): Unselect current thread when it exits.
(gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
(gdb-mark-line): Routine which sets overlay arrow or inverses
video on fringeless displays.
(gdb-table, gdb-table-add-row, gdb-table-string): Structure used
to build aligned columns of data in GDB buffers and set text
properties line-by-line.
(gdb-invalidate-breakpoints)
(gdb-breakpoints-list-handler-custom)
(gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
(gdb-stack-list-frames-custom, gdb-locals-handler-custom)
(gdb-registers-handler-custom): Align data columns.
(gdb-locals-handler-custom): Now prints data like in variable
declarations.
(gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
Removed confusing buttons.
(gdb-invalidate-threads): Append --frame.
(gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
between breakpoints/threads buffers.
(gdb-set-window-buffer): Now can ignore dedicated windows.
(gdb-propertize-header): Use `gdb-set-window-buffer'.
(def-gdb-thread-buffer-simple-command): Numerous typos fixed.
(def-gdb-thread-buffer-gud-command): Replaces
`def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
for fine thread control.
(gdb-preempt-existing-or-display-buffer): New function used to
display bound buffers without breaking window layout.
(gdb-frame-location): Replaces `gdb-insert-frame-location'.
(gdb-select-frame): New version of `gdb-frames-select' which now
sets `gdb-frame-number' so commands may use --frame option instead
of inner debugger state.
(gdb-frame-handler): Do not set `gdb-frame-number'.
(gdb-threads-mode-map): Select threads with mouse.
(I forgot to include sources in previous commit)
author | Dmitry Dzhus <dima@sphinx.net.ru> |
---|---|
date | Tue, 04 Aug 2009 17:16:58 +0000 |
parents | dc97fcf1ed7e |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
64890
3723093a21fd
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
1 # Copyright (C) 1993, 1994, 1995, 1996, 2001, 2002, 2003, 2004, |
100956 | 2 # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
36236 | 3 |
4 # This file is part of GNU Emacs. | |
5 | |
94790
fa41f74280f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79742
diff
changeset
|
6 # GNU Emacs is free software: you can redistribute it and/or modify |
36236 | 7 # it under the terms of the GNU General Public License as published by |
94790
fa41f74280f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79742
diff
changeset
|
8 # the Free Software Foundation, either version 3 of the License, or |
fa41f74280f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79742
diff
changeset
|
9 # (at your option) any later version. |
36236 | 10 |
11 # GNU Emacs is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU General Public License for more details. | |
15 | |
16 # You should have received a copy of the GNU General Public License | |
94790
fa41f74280f5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79742
diff
changeset
|
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
36236 | 18 |
9571 | 19 # make all to compile and build Emacs. |
20 # make install to install it. | |
21 # make TAGS to update tags tables. | |
22 # | |
23 # make clean or make mostlyclean | |
24 # Delete all files from the current directory that are normally | |
25 # created by building the program. Don't delete the files that | |
26 # record the configuration. Also preserve files that could be made | |
27 # by building, but normally aren't because the distribution comes | |
28 # with them. | |
29 # | |
30 # Delete `.dvi' files here if they are not part of the distribution. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
36236
diff
changeset
|
31 # |
9571 | 32 # make distclean |
33 # Delete all files from the current directory that are created by | |
34 # configuring or building the program. If you have unpacked the | |
35 # source and built the program without creating any other files, | |
36 # `make distclean' should leave only the files that were in the | |
37 # distribution. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
36236
diff
changeset
|
38 # |
9571 | 39 # make realclean |
40 # Delete everything from the current directory that can be | |
41 # reconstructed with this Makefile. This typically includes | |
42 # everything deleted by distclean, plus more: C source files | |
43 # produced by Bison, tags tables, info files, and so on. | |
44 # | |
45 # make extraclean | |
46 # Still more severe - delete backup and autosave files, too. | |
47 | |
48 all: lib-src src | |
49 | |
50 lib-src: FRC | |
51 cd lib-src | |
52 $(MAKE) | |
53 cd .. | |
54 | |
55 src: FRC | |
56 cd src | |
57 $(MAKE) | |
58 cd .. | |
59 | |
60 install: all | |
61 -md bin | |
62 cd lib-src | |
63 coff2exe hexl | |
64 coff2exe etags | |
65 coff2exe ctags | |
66 coff2exe b2m | |
13392
df402eaace58
(install): Don't mv make-doc.exe into ../bin/.
Karl Heuer <kwzh@gnu.org>
parents:
9571
diff
changeset
|
67 mv -f hexl.exe etags.exe ctags.exe b2m.exe ../bin/ |
9571 | 68 cd .. |
69 cd src | |
70 coff2exe emacs | |
71 stubedit emacs.exe minstack=512k | |
72 mv -f emacs.exe ../bin/ | |
73 cd .. | |
74 | |
75 FRC: | |
76 | |
77 TAGS tags: lib-src | |
78 cd src | |
79 go32 ../lib-src/etags *.[ch] ../lisp/*.el ../lisp/term/*.el | |
80 cd .. | |
81 | |
82 check: | |
83 @echo "We don't have any tests for GNU Emacs yet." | |
84 | |
85 clean: | |
86 cd lib-src | |
87 $(MAKE) clean | |
88 cd .. | |
89 cd src | |
90 $(MAKE) clean | |
91 cd .. | |
92 cd oldxmenu | |
93 -$(MAKE) clean | |
94 cd .. | |
52401 | 95 |
96 # arch-tag: d5a489bc-818e-4c3c-8040-b5205ed0602f |