Mercurial > hg > xemacs-beta
annotate nt/compface.mak @ 5581:56144c8593a8
Mechanically change INT to FIXNUM in our sources.
src/ChangeLog addition:
2011-10-09 Aidan Kehoe <kehoea@parhasard.net>
[...]
Mechanically change INT (where it refers to non-bignum Lisp
integers) to FIXNUM in our sources. Done for the following
functions, enums, and macros: Lisp_Type_Int_Even,
Lisp_Type_Int_Odd, INT_GCBITS, INT_VALBITS, make_int(), INTP(),
XINT(), CHECK_INT(), XREALINT(), INT_PLUS(), INT_MINUS(),
EMACS_INT_MAX (to MOST_POSITIVE_FIXNUM), EMACS_INT_MIN (to
MOST_NEGATIVE_FIXNUM), NUMBER_FITS_IN_AN_EMACS_INT() to
NUMBER_FITS_IN_A_FIXNUM(), XFLOATINT, XCHAR_OR_INT, INT_OR_FLOAT.
The EMACS_INT typedef was not changed, it does not describe
non-bignum Lisp integers.
Script that did the change available in
http://mid.gmane.org/20067.17650.181273.12014@parhasard.net .
modules/ChangeLog addition:
2011-10-09 Aidan Kehoe <kehoea@parhasard.net>
[...]
Mechanically change INT to FIXNUM, where the usage describes non-bignum
Lisp integers. See the src/ChangeLog entry for more details.
man/ChangeLog addition:
2011-10-09 Aidan Kehoe <kehoea@parhasard.net>
* internals/internals.texi (How Lisp Objects Are Represented in C):
* internals/internals.texi (Integers and Characters):
Mechanically change INT to FIXNUM, where the usage describes non-bignum
Lisp integers.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 09 Oct 2011 09:51:57 +0100 |
parents | b9167d522a9a |
children |
rev | line source |
---|---|
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
1 ## Compface Makefile for Microsoft NMAKE |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
2 ## Based on xpm.mak |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
3 ## Copyright (C) 2001 Ben Wing. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
4 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
5 ## This file is part of XEmacs. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
6 |
5416
365bc8cb5894
Convert to GPLv3 misc files.
Mats Lidell <matsl@xemacs.org>
parents:
4894
diff
changeset
|
7 ## XEmacs is free software: you can redistribute it and/or modify it |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
8 ## under the terms of the GNU General Public License as published by the |
5416
365bc8cb5894
Convert to GPLv3 misc files.
Mats Lidell <matsl@xemacs.org>
parents:
4894
diff
changeset
|
9 ## Free Software Foundation, either version 3 of the License, or (at your |
365bc8cb5894
Convert to GPLv3 misc files.
Mats Lidell <matsl@xemacs.org>
parents:
4894
diff
changeset
|
10 ## option) any later version. |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
11 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
12 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
13 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
14 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
15 ## for more details. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
16 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
488
diff
changeset
|
17 ## You should have received a copy of the GNU General Public License |
5416
365bc8cb5894
Convert to GPLv3 misc files.
Mats Lidell <matsl@xemacs.org>
parents:
4894
diff
changeset
|
18 ## along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
394 | 19 |
20 !if !defined(DEBUG_XEMACS) | |
21 DEBUG_XEMACS=0 | |
22 !endif | |
23 | |
24 !if $(DEBUG_XEMACS) | |
25 OPT=-Od -Zi | |
26 !else | |
27 OPT=-O2 -G5 -Zi | |
28 !endif | |
29 | |
30 WARN_CPP_FLAGS = -W3 | |
31 | |
32 #MSVC uses string.h, not strings.h | |
33 DEFINES=-DSYSV32 | |
34 | |
35 CC=cl | |
36 CFLAGS=-nologo -DFOR_MSW $(WARN_CPP_FLAGS) $(OPT) $(INCLUDES) $(DEFINES) -Fo$@ -c | |
37 | |
38 OBJS= arith.obj file.obj compress.obj gen.obj uncompface.obj | |
39 | |
40 # nmake rule | |
41 | |
42 .SUFFIXES: | |
43 .SUFFIXES: .c | |
44 | |
45 .c.obj: | |
46 $(CC) $(CFLAGS) $< -Fo$@ | |
47 | |
48 | |
49 # targets | |
50 | |
51 all: libcompface.lib | |
52 | |
53 libcompface.lib: $(OBJS) | |
54 link.exe -lib -nologo -out:$@ $(OBJS) | |
488 | 55 |
56 clean: $(OBJS) | |
57 -rm -f $(OBJS) libcompface.lib |