Mercurial > hg > xemacs-beta
comparison nt/config.inc.samp @ 1347:8d350b095c21
[xemacs-hg @ 2003-03-09 12:59:36 by ben]
oops, C++ bites again
widget.texi: Fix Turnbull typos.
config.inc.samp: Note that relative directories are a no-no in BUILD_DIR and
SOURCE_DIR. Use paths relative to $(MAKEROOT) instead.
file-coding.c: Fix up internal magic-cookie code to also check for
`;;;###coding system', already handled by the (redundant)
code in files.el.
regex.c: Fix problem with ordering of initializations and statements -- OK in
C++, not in C.
search.c: Indentation.
author | ben |
---|---|
date | Sun, 09 Mar 2003 12:59:45 +0000 |
parents | 1b0339b048ce |
children | 3227a97effa8 |
comparison
equal
deleted
inserted
replaced
1346:01c57eb70ae9 | 1347:8d350b095c21 |
---|---|
89 # path, creating the directories as necessary. The problem with this is | 89 # path, creating the directories as necessary. The problem with this is |
90 # that the first method above allows you to have a different copy of | 90 # that the first method above allows you to have a different copy of |
91 # `config.inc' for each build directory, but doing it this way means you | 91 # `config.inc' for each build directory, but doing it this way means you |
92 # have only one version of config.inc, and have to manually change it for | 92 # have only one version of config.inc, and have to manually change it for |
93 # each different build. | 93 # each different build. |
94 | |
95 # NOTE: These cannot be relative paths. If you want the source and build to | |
96 # be relatives of each other, use $(MAKEROOT) to refer to the root of the | |
97 # current tree -- that's one level up from where xemacs.mak is located. | |
94 | 98 |
95 # SOURCE_DIR=c:\src\xemacs\working | 99 # SOURCE_DIR=c:\src\xemacs\working |
96 | 100 |
97 # BUILD_DIR=c:\src\xemacs\msbuilds\working | 101 # BUILD_DIR=c:\src\xemacs\msbuilds\working |
98 | 102 |