diff options
Diffstat (limited to 'mac/makefile.MPW')
| -rw-r--r-- | mac/makefile.MPW | 1175 |
1 files changed, 0 insertions, 1175 deletions
diff --git a/mac/makefile.MPW b/mac/makefile.MPW deleted file mode 100644 index e2d7d9ac404..00000000000 --- a/mac/makefile.MPW +++ /dev/null | |||
| @@ -1,1175 +0,0 @@ | |||
| 1 | # Make file for building GNU Emacs on the Macintosh. | ||
| 2 | # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, | ||
| 3 | # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | ||
| 4 | # | ||
| 5 | # Author: Andrew Choi <akochoi@users.sourceforge.net> | ||
| 6 | # | ||
| 7 | # This file is part of GNU Emacs. | ||
| 8 | # | ||
| 9 | # GNU Emacs is free software; you can redistribute it and/or modify | ||
| 10 | # it under the terms of the GNU General Public License as published by | ||
| 11 | # the Free Software Foundation; either version 3, or (at your option) | ||
| 12 | # any later version. | ||
| 13 | # | ||
| 14 | # GNU Emacs is distributed in the hope that it will be useful, | ||
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | # GNU General Public License for more details. | ||
| 18 | # | ||
| 19 | # You should have received a copy of the GNU General Public License | ||
| 20 | # along with GNU Emacs; see the file COPYING. If not, write to | ||
| 21 | # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
| 22 | # Boston, MA 02110-1301, USA. */ | ||
| 23 | # | ||
| 24 | # Defines the following targets: | ||
| 25 | # Emacs (default) - normal Carbon Emacs build. | ||
| 26 | # NonCarbon - non-Carbon Emacs build. | ||
| 27 | # Clean - remove all object and executable files to prepare for a fresh build. | ||
| 28 | # Doc - generate the "DOC" file in ~emacs/etc/. | ||
| 29 | # Make-DocFile - build the make-docfile tool, utility for generating "DOC". | ||
| 30 | |||
| 31 | Src = ::src: # emacs's src directory | ||
| 32 | Includes = :inc: # mac includes directory (common for MPW and CW) | ||
| 33 | Source = :src: # mac source directory | ||
| 34 | Lib-Src = ::lib-src: # ~emacs/lib-src directory, containing make-docfile.c | ||
| 35 | EmacsTarget = :Emacs MPW # pathname of target executable file | ||
| 36 | DocTarget = ::etc: # where the generated DOC file should be placed | ||
| 37 | Lisp = ::lisp: # emacs's lisp directory | ||
| 38 | Make-DocFileDir = {Lib-Src} # directory containing make-docfile tool | ||
| 39 | |||
| 40 | Makefile = makefile.MPW # self reference | ||
| 41 | NonCarbonMakeOut = NonCarbon.MakeOut # temporary file for non-Carbon build script | ||
| 42 | |||
| 43 | CarbonOption = -d HAVE_CARBON | ||
| 44 | SymOption = # -sym on # remove hash mark before "-sym on" to enable source debugging | ||
| 45 | OptOption = # -opt speed # alternatively set to -opt off or -opt size | ||
| 46 | |||
| 47 | # The -noMapCR options and the two -d's must not be removed. | ||
| 48 | |||
| 49 | PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int -alloca ¶ | ||
| 50 | -typecheck relaxed -w off ¶ | ||
| 51 | -includes unix -i {Includes},{Src} ¶ | ||
| 52 | -d emacs=1 -d HAVE_CONFIG_H -d MAC_OS -d MAC_OS8 {CarbonOption} | ||
| 53 | |||
| 54 | LinkOptions = {SymOption} -d | ||
| 55 | |||
| 56 | CONFIG_H_GROUP = "{Includes}config.h" "{Includes}s-mac.h" "{Includes}utsname.h" "{Includes}m-mac.h" | ||
| 57 | DISPEXTERN_H_GROUP = "{Src}dispextern.h" "{Src}macgui.h" | ||
| 58 | INTERVALS_H_GROUP = "{Src}intervals.h" "{Src}dispextern.h" "{Src}macgui.h" | ||
| 59 | WINDOW_H_GROUP = "{Src}window.h" {DISPEXTERN_H_GROUP} | ||
| 60 | BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" ¶ | ||
| 61 | "{Includes}sys:time.h" "{Includes}sys:time.h" | ||
| 62 | |||
| 63 | # The list all object files from the GNU Emacs 21.0 distribution. | ||
| 64 | |||
| 65 | EmacsObjects = ¶ | ||
| 66 | "{Src}abbrev.c.x" ¶ | ||
| 67 | "{Src}alloc.c.x" ¶ | ||
| 68 | "{Src}atimer.c.x" ¶ | ||
| 69 | "{Src}buffer.c.x" ¶ | ||
| 70 | "{Src}bytecode.c.x" ¶ | ||
| 71 | "{Src}callint.c.x" ¶ | ||
| 72 | "{Src}callproc.c.x" ¶ | ||
| 73 | "{Src}casefiddle.c.x" ¶ | ||
| 74 | "{Src}casetab.c.x" ¶ | ||
| 75 | "{Src}category.c.x" ¶ | ||
| 76 | "{Src}ccl.c.x" ¶ | ||
| 77 | "{Src}charset.c.x" ¶ | ||
| 78 | "{Src}cm.c.x" ¶ | ||
| 79 | "{Src}cmds.c.x" ¶ | ||
| 80 | "{Src}coding.c.x" ¶ | ||
| 81 | "{Src}composite.c.x" ¶ | ||
| 82 | "{Src}data.c.x" ¶ | ||
| 83 | "{Src}dired.c.x" ¶ | ||
| 84 | "{Src}dispnew.c.x" ¶ | ||
| 85 | "{Src}doc.c.x" ¶ | ||
| 86 | "{Src}doprnt.c.x" ¶ | ||
| 87 | "{Src}editfns.c.x" ¶ | ||
| 88 | "{Src}emacs.c.x" ¶ | ||
| 89 | "{Src}eval.c.x" ¶ | ||
| 90 | "{Src}fileio.c.x" ¶ | ||
| 91 | "{Src}filemode.c.x" ¶ | ||
| 92 | "{Src}floatfns.c.x" ¶ | ||
| 93 | "{Src}fns.c.x" ¶ | ||
| 94 | "{Src}fontset.c.x" ¶ | ||
| 95 | "{Src}frame.c.x" ¶ | ||
| 96 | "{Src}fringe.c.x" ¶ | ||
| 97 | "{Src}getloadavg.c.x" ¶ | ||
| 98 | "{Src}image.c.x" ¶ | ||
| 99 | "{Src}indent.c.x" ¶ | ||
| 100 | "{Src}insdel.c.x" ¶ | ||
| 101 | "{Src}intervals.c.x" ¶ | ||
| 102 | "{Src}keyboard.c.x" ¶ | ||
| 103 | "{Src}keymap.c.x" ¶ | ||
| 104 | "{Src}lread.c.x" ¶ | ||
| 105 | "{Src}macros.c.x" ¶ | ||
| 106 | "{Src}marker.c.x" ¶ | ||
| 107 | "{Src}md5.c.x" ¶ | ||
| 108 | "{Src}minibuf.c.x" ¶ | ||
| 109 | "{Src}mktime.c.x" ¶ | ||
| 110 | "{Src}print.c.x" ¶ | ||
| 111 | "{Src}process.c.x" ¶ | ||
| 112 | "{Src}regex.c.x" ¶ | ||
| 113 | "{Src}region-cache.c.x" ¶ | ||
| 114 | "{Src}scroll.c.x" ¶ | ||
| 115 | "{Src}search.c.x" ¶ | ||
| 116 | "{Src}strftime.c.x" ¶ | ||
| 117 | "{Src}syntax.c.x" ¶ | ||
| 118 | "{Src}sysdep.c.x" ¶ | ||
| 119 | "{Src}term.c.x" ¶ | ||
| 120 | "{Src}termcap.c.x" ¶ | ||
| 121 | "{Src}terminal.c.x" ¶ | ||
| 122 | "{Src}textprop.c.x" ¶ | ||
| 123 | "{Src}tparam.c.x" ¶ | ||
| 124 | "{Src}undo.c.x" ¶ | ||
| 125 | "{Src}window.c.x" ¶ | ||
| 126 | "{Src}xdisp.c.x" ¶ | ||
| 127 | "{Src}xfaces.c.x" ¶ | ||
| 128 | "{Src}lastfile.c.x" | ||
| 129 | |||
| 130 | # The list of object files generated from new source files of the Macintosh port. | ||
| 131 | |||
| 132 | MacObjects = ¶ | ||
| 133 | "{Src}mac.c.x" ¶ | ||
| 134 | "{Src}macfns.c.x" ¶ | ||
| 135 | "{Src}macmenu.c.x" ¶ | ||
| 136 | "{Src}macselect.c.x" ¶ | ||
| 137 | "{Src}macterm.c.x" | ||
| 138 | |||
| 139 | StdLibraries = ¶ | ||
| 140 | "{SharedLibraries}CarbonLib" ¶ | ||
| 141 | "{SharedLibraries}StdCLib" ¶ | ||
| 142 | "{PPCLibraries}StdCRuntime.o" ¶ | ||
| 143 | "{PPCLibraries}PPCCRuntime.o" | ||
| 144 | |||
| 145 | NonCarbonLibs = ¶ | ||
| 146 | "{SharedLibraries}InterfaceLib" ¶ | ||
| 147 | "{SharedLibraries}StdCLib" ¶ | ||
| 148 | "{SharedLibraries}MathLib" ¶ | ||
| 149 | "{SharedLibraries}AppleScriptLib" ¶ | ||
| 150 | "{SharedLibraries}LocalesLib" ¶ | ||
| 151 | "{SharedLibraries}AppearanceLib" ¶ | ||
| 152 | "{SharedLibraries}QuickTimeLib" ¶ | ||
| 153 | "{PPCLibraries}StdCRuntime.o" ¶ | ||
| 154 | "{PPCLibraries}PPCCRuntime.o" ¶ | ||
| 155 | "{PPCLibraries}PPCToolLibs.o" | ||
| 156 | |||
| 157 | # The next two are the dependency rules for building Emacs. | ||
| 158 | |||
| 159 | Emacs ÄÄ {Makefile} buildobj.lst {DocTarget}DOC {EmacsObjects} {MacObjects} | ||
| 160 | PPCLink ¶ | ||
| 161 | {LinkOptions} ¶ | ||
| 162 | {EmacsObjects} {MacObjects} ¶ | ||
| 163 | {StdLibraries} ¶ | ||
| 164 | -o "{EmacsTarget}" | ||
| 165 | |||
| 166 | Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r | ||
| 167 | Rez {CarbonOption} -a "{Source}"Emacs.maclf.r -o "{EmacsTarget}" | ||
| 168 | Rez {CarbonOption} -a "{Source}"EmacsMPW.maclf.r -o "{EmacsTarget}" | ||
| 169 | SetFile "{EmacsTarget}" -t APPL -c 'EMAx' -a B | ||
| 170 | |||
| 171 | NonCarbon Ä | ||
| 172 | Make -f "{Makefile}" -d CarbonOption="" -d StdLibraries='{NonCarbonLibs}' > "{NonCarbonMakeOut}" | ||
| 173 | "{NonCarbonMakeOut}" | ||
| 174 | |||
| 175 | # Rez cannot handle files with Unix style end lines at all. So generate | ||
| 176 | # them. It does not hurt if Emacs.r and EmacsMPW.r already have Mac end | ||
| 177 | # lines. | ||
| 178 | |||
| 179 | "{Source}"Emacs.maclf.r Ä "{Source}"Emacs.r | ||
| 180 | translate ¶0x0a ¶n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r | ||
| 181 | |||
| 182 | "{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r | ||
| 183 | translate ¶0x0a ¶n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r | ||
| 184 | |||
| 185 | buildobj.lst Ä | ||
| 186 | Echo "{EmacsObjects} {MacObjects}" | StreamEdit -e '1,$ Replace -c ° /[Â ]*:([Â: ]*)¨1.c.x/ ¨1".o"' > buildobj.lst | ||
| 187 | |||
| 188 | # Here comes a long boring list of rules saying which files depend on which | ||
| 189 | # other ones. I generated them by hand using the "-p" option of the MrC compiler. | ||
| 190 | # Know about MakeMake, but this is probably more accurate. | ||
| 191 | |||
| 192 | {Src}abbrev.c.x Ä ¶ | ||
| 193 | {CONFIG_H_GROUP} ¶ | ||
| 194 | "{Src}lisp.h" ¶ | ||
| 195 | "{Src}commands.h" ¶ | ||
| 196 | "{Src}buffer.h" ¶ | ||
| 197 | {WINDOW_H_GROUP} ¶ | ||
| 198 | "{Src}charset.h" ¶ | ||
| 199 | "{Src}syntax.h" | ||
| 200 | |||
| 201 | {Src}alloc.c.x Ä ¶ | ||
| 202 | {CONFIG_H_GROUP} ¶ | ||
| 203 | "{Src}lisp.h" ¶ | ||
| 204 | {INTERVALS_H_GROUP} ¶ | ||
| 205 | "{Src}puresize.h" ¶ | ||
| 206 | "{Src}buffer.h" ¶ | ||
| 207 | {WINDOW_H_GROUP} ¶ | ||
| 208 | "{Src}frame.h" ¶ | ||
| 209 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 210 | "{Src}keyboard.h" ¶ | ||
| 211 | "{Src}charset.h" ¶ | ||
| 212 | "{Src}syssignal.h" | ||
| 213 | |||
| 214 | {Src}alloca.c.x Ä ¶ | ||
| 215 | {CONFIG_H_GROUP} ¶ | ||
| 216 | "{Src}lisp.h" ¶ | ||
| 217 | {BLOCKINPUT_H_GROUP} | ||
| 218 | |||
| 219 | {Src}atimer.c.x Ä ¶ | ||
| 220 | {CONFIG_H_GROUP} ¶ | ||
| 221 | "{Src}lisp.h" ¶ | ||
| 222 | "{Src}syssignal.h" ¶ | ||
| 223 | "{Src}systime.h" ¶ | ||
| 224 | "{Includes}sys:time.h" ¶ | ||
| 225 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 226 | "{Src}atimer.h" ¶ | ||
| 227 | "{Includes}sys:time.h" | ||
| 228 | |||
| 229 | {Src}buffer.c.x Ä ¶ | ||
| 230 | {CONFIG_H_GROUP} ¶ | ||
| 231 | "{Includes}sys:types.h" ¶ | ||
| 232 | "{Includes}sys:stat.h" ¶ | ||
| 233 | "{Includes}sys:param.h" ¶ | ||
| 234 | "{Src}lisp.h" ¶ | ||
| 235 | {INTERVALS_H_GROUP} ¶ | ||
| 236 | "{Src}window.h" ¶ | ||
| 237 | "{Src}commands.h" ¶ | ||
| 238 | "{Src}buffer.h" ¶ | ||
| 239 | "{Src}charset.h" ¶ | ||
| 240 | "{Src}region-cache.h" ¶ | ||
| 241 | "{Src}indent.h" ¶ | ||
| 242 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 243 | "{Src}frame.h" | ||
| 244 | |||
| 245 | {Src}bytecode.c.x Ä ¶ | ||
| 246 | {CONFIG_H_GROUP} ¶ | ||
| 247 | "{Src}lisp.h" ¶ | ||
| 248 | "{Src}buffer.h" ¶ | ||
| 249 | "{Src}charset.h" ¶ | ||
| 250 | "{Src}syntax.h" | ||
| 251 | |||
| 252 | {Src}callint.c.x Ä ¶ | ||
| 253 | {CONFIG_H_GROUP} ¶ | ||
| 254 | "{Src}lisp.h" ¶ | ||
| 255 | "{Src}buffer.h" ¶ | ||
| 256 | "{Src}commands.h" ¶ | ||
| 257 | "{Src}keyboard.h" ¶ | ||
| 258 | {WINDOW_H_GROUP} | ||
| 259 | |||
| 260 | {Src}callproc.c.x Ä ¶ | ||
| 261 | {CONFIG_H_GROUP} ¶ | ||
| 262 | "{Includes}sys:types.h" ¶ | ||
| 263 | "{Includes}sys:file.h" ¶ | ||
| 264 | "{Includes}sys:types.h" ¶ | ||
| 265 | "{Includes}sys:stat.h" ¶ | ||
| 266 | "{Src}lisp.h" ¶ | ||
| 267 | "{Src}commands.h" ¶ | ||
| 268 | "{Src}buffer.h" ¶ | ||
| 269 | "{Src}charset.h" ¶ | ||
| 270 | "{Src}ccl.h" ¶ | ||
| 271 | "{Src}coding.h" ¶ | ||
| 272 | "{Src}composite.h" ¶ | ||
| 273 | "{Includes}epaths.h" ¶ | ||
| 274 | "{Src}process.h" ¶ | ||
| 275 | "{Src}syssignal.h" ¶ | ||
| 276 | "{Src}systty.h" ¶ | ||
| 277 | "{Includes}termio.h" ¶ | ||
| 278 | "{Src}frame.h" ¶ | ||
| 279 | "{Src}termhooks.h" | ||
| 280 | |||
| 281 | {Src}casefiddle Ä ¶ | ||
| 282 | {CONFIG_H_GROUP} ¶ | ||
| 283 | "{Src}lisp.h" ¶ | ||
| 284 | "{Src}buffer.h" ¶ | ||
| 285 | "{Src}charset.h" ¶ | ||
| 286 | "{Src}commands.h" ¶ | ||
| 287 | "{Src}syntax.h" ¶ | ||
| 288 | "{Src}composite.h" | ||
| 289 | |||
| 290 | {Src}casetab.c.x Ä ¶ | ||
| 291 | {CONFIG_H_GROUP} ¶ | ||
| 292 | "{Src}lisp.h" ¶ | ||
| 293 | "{Src}buffer.h" ¶ | ||
| 294 | "{Src}charset.h" | ||
| 295 | |||
| 296 | {Src}category.c.x Ä ¶ | ||
| 297 | {CONFIG_H_GROUP} ¶ | ||
| 298 | "{Src}lisp.h" ¶ | ||
| 299 | "{Src}buffer.h" ¶ | ||
| 300 | "{Src}charset.h" ¶ | ||
| 301 | "{Src}category.h" | ||
| 302 | |||
| 303 | {Src}ccl.c.x Ä ¶ | ||
| 304 | {CONFIG_H_GROUP} ¶ | ||
| 305 | "{Src}lisp.h" ¶ | ||
| 306 | "{Src}charset.h" ¶ | ||
| 307 | "{Src}ccl.h" ¶ | ||
| 308 | "{Src}coding.h" | ||
| 309 | |||
| 310 | {Src}charset.c.x Ä ¶ | ||
| 311 | {CONFIG_H_GROUP} ¶ | ||
| 312 | "{Includes}sys:types.h" ¶ | ||
| 313 | "{Src}lisp.h" ¶ | ||
| 314 | "{Src}buffer.h" ¶ | ||
| 315 | "{Src}charset.h" ¶ | ||
| 316 | "{Src}coding.h" ¶ | ||
| 317 | "{Src}ccl.h" ¶ | ||
| 318 | "{Src}disptab.h" | ||
| 319 | |||
| 320 | {Src}cm.c.x Ä ¶ | ||
| 321 | {CONFIG_H_GROUP} ¶ | ||
| 322 | "{Src}cm.h" ¶ | ||
| 323 | "{Src}termhooks.h" | ||
| 324 | |||
| 325 | {Src}cmds.c.x Ä ¶ | ||
| 326 | {CONFIG_H_GROUP} ¶ | ||
| 327 | "{Src}lisp.h" ¶ | ||
| 328 | "{Src}commands.h" ¶ | ||
| 329 | "{Src}buffer.h" ¶ | ||
| 330 | "{Src}charset.h" ¶ | ||
| 331 | "{Src}syntax.h" ¶ | ||
| 332 | {WINDOW_H_GROUP} ¶ | ||
| 333 | "{Src}keyboard.h" ¶ | ||
| 334 | {DISPEXTERN_H_GROUP} | ||
| 335 | |||
| 336 | {Src}coding.c.x Ä ¶ | ||
| 337 | {CONFIG_H_GROUP} ¶ | ||
| 338 | "{Src}lisp.h" ¶ | ||
| 339 | "{Src}buffer.h" ¶ | ||
| 340 | "{Src}charset.h" ¶ | ||
| 341 | "{Src}composite.h" ¶ | ||
| 342 | "{Src}ccl.h" ¶ | ||
| 343 | "{Src}coding.h" ¶ | ||
| 344 | {WINDOW_H_GROUP} | ||
| 345 | |||
| 346 | {Src}composite.c.x Ä ¶ | ||
| 347 | {CONFIG_H_GROUP} ¶ | ||
| 348 | "{Src}lisp.h" ¶ | ||
| 349 | "{Src}buffer.h" ¶ | ||
| 350 | "{Src}charset.h" ¶ | ||
| 351 | {INTERVALS_H_GROUP} | ||
| 352 | |||
| 353 | {Src}data.c.x Ä ¶ | ||
| 354 | {CONFIG_H_GROUP} ¶ | ||
| 355 | "{Src}lisp.h" ¶ | ||
| 356 | "{Src}puresize.h" ¶ | ||
| 357 | "{Src}charset.h" ¶ | ||
| 358 | "{Src}buffer.h" ¶ | ||
| 359 | "{Src}keyboard.h" ¶ | ||
| 360 | "{Src}frame.h" ¶ | ||
| 361 | "{Src}syssignal.h" | ||
| 362 | |||
| 363 | {Src}dired.c.x Ä ¶ | ||
| 364 | {CONFIG_H_GROUP} ¶ | ||
| 365 | "{Includes}sys:types.h" ¶ | ||
| 366 | "{Includes}sys:stat.h" ¶ | ||
| 367 | "{Src}systime.h" ¶ | ||
| 368 | "{Includes}sys:time.h" ¶ | ||
| 369 | "{Includes}dirent.h" ¶ | ||
| 370 | "{Src}lisp.h" ¶ | ||
| 371 | "{Src}buffer.h" ¶ | ||
| 372 | "{Src}commands.h" ¶ | ||
| 373 | "{Src}charset.h" ¶ | ||
| 374 | "{Src}coding.h" ¶ | ||
| 375 | "{Src}ccl.h" ¶ | ||
| 376 | "{Src}regex.h" ¶ | ||
| 377 | {BLOCKINPUT_H_GROUP} | ||
| 378 | |||
| 379 | {Src}dispnew.c.x Ä ¶ | ||
| 380 | {CONFIG_H_GROUP} ¶ | ||
| 381 | "{Src}lisp.h" ¶ | ||
| 382 | "{Src}termchar.h" ¶ | ||
| 383 | "{Src}termopts.h" ¶ | ||
| 384 | "{Src}termhooks.h" ¶ | ||
| 385 | {DISPEXTERN_H_GROUP} ¶ | ||
| 386 | "{Src}cm.h" ¶ | ||
| 387 | "{Src}buffer.h" ¶ | ||
| 388 | "{Src}charset.h" ¶ | ||
| 389 | {WINDOW_H_GROUP} ¶ | ||
| 390 | "{Src}commands.h" ¶ | ||
| 391 | "{Src}disptab.h" ¶ | ||
| 392 | "{Src}indent.h" ¶ | ||
| 393 | {INTERVALS_H_GROUP} ¶ | ||
| 394 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 395 | "{Src}process.h" ¶ | ||
| 396 | "{Src}keyboard.h" ¶ | ||
| 397 | "{Src}syssignal.h" ¶ | ||
| 398 | "{Src}macterm.h" ¶ | ||
| 399 | "{Src}macgui.h" ¶ | ||
| 400 | "{Src}frame.h" ¶ | ||
| 401 | "{Src}systime.h" | ||
| 402 | |||
| 403 | {Src}doc.c.x Ä ¶ | ||
| 404 | {CONFIG_H_GROUP} ¶ | ||
| 405 | "{Includes}sys:types.h" ¶ | ||
| 406 | "{Includes}sys:file.h" ¶ | ||
| 407 | "{Src}lisp.h" ¶ | ||
| 408 | "{Src}buffer.h" ¶ | ||
| 409 | "{Src}keyboard.h" ¶ | ||
| 410 | "{Src}charset.h" | ||
| 411 | |||
| 412 | {Src}doprnt.c.x Ä ¶ | ||
| 413 | {CONFIG_H_GROUP} ¶ | ||
| 414 | "{Src}lisp.h" ¶ | ||
| 415 | "{Src}charset.h" | ||
| 416 | |||
| 417 | {Src}editfns.c.x Ä ¶ | ||
| 418 | {CONFIG_H_GROUP} ¶ | ||
| 419 | "{Includes}sys:types.h" ¶ | ||
| 420 | "{Includes}pwd.h" ¶ | ||
| 421 | "{Src}lisp.h" ¶ | ||
| 422 | {INTERVALS_H_GROUP} ¶ | ||
| 423 | "{Src}buffer.h" ¶ | ||
| 424 | "{Src}charset.h" ¶ | ||
| 425 | "{Src}coding.h" ¶ | ||
| 426 | "{Src}ccl.h" ¶ | ||
| 427 | {WINDOW_H_GROUP} ¶ | ||
| 428 | "{Src}systime.h" ¶ | ||
| 429 | "{Includes}sys:time.h" ¶ | ||
| 430 | {BLOCKINPUT_H_GROUP} | ||
| 431 | |||
| 432 | {Src}emacs.c.x Ä ¶ | ||
| 433 | {CONFIG_H_GROUP} ¶ | ||
| 434 | "{Includes}sys:types.h" ¶ | ||
| 435 | "{Includes}sys:file.h" ¶ | ||
| 436 | "{Includes}sys:types.h" ¶ | ||
| 437 | "{Includes}sys:stat.h" ¶ | ||
| 438 | "{Src}lisp.h" ¶ | ||
| 439 | "{Src}commands.h" ¶ | ||
| 440 | {INTERVALS_H_GROUP} ¶ | ||
| 441 | "{Src}buffer.h" ¶ | ||
| 442 | "{Src}systty.h" ¶ | ||
| 443 | "{Includes}termio.h" ¶ | ||
| 444 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 445 | "{Src}syssignal.h" ¶ | ||
| 446 | "{Src}process.h" ¶ | ||
| 447 | "{Src}termhooks.h" ¶ | ||
| 448 | "{Src}keyboard.h" ¶ | ||
| 449 | "{Src}frame.h" | ||
| 450 | |||
| 451 | {Src}eval.c.x Ä ¶ | ||
| 452 | {CONFIG_H_GROUP} ¶ | ||
| 453 | "{Src}lisp.h" ¶ | ||
| 454 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 455 | "{Src}commands.h" ¶ | ||
| 456 | "{Src}keyboard.h" ¶ | ||
| 457 | {DISPEXTERN_H_GROUP} | ||
| 458 | |||
| 459 | {Src}fileio.c.x Ä ¶ | ||
| 460 | {CONFIG_H_GROUP} ¶ | ||
| 461 | "{Includes}sys:types.h" ¶ | ||
| 462 | "{Includes}sys:stat.h" ¶ | ||
| 463 | "{Includes}pwd.h" ¶ | ||
| 464 | "{Src}lisp.h" ¶ | ||
| 465 | {INTERVALS_H_GROUP} ¶ | ||
| 466 | "{Src}buffer.h" ¶ | ||
| 467 | "{Src}charset.h" ¶ | ||
| 468 | "{Src}coding.h" ¶ | ||
| 469 | "{Src}ccl.h" ¶ | ||
| 470 | {WINDOW_H_GROUP} ¶ | ||
| 471 | "{Src}systime.h" ¶ | ||
| 472 | "{Includes}sys:time.h" ¶ | ||
| 473 | "{Src}commands.h" ¶ | ||
| 474 | {BLOCKINPUT_H_GROUP} | ||
| 475 | |||
| 476 | {Src}filemode.c.x Ä ¶ | ||
| 477 | {CONFIG_H_GROUP} ¶ | ||
| 478 | "{Includes}sys:types.h" ¶ | ||
| 479 | "{Includes}sys:stat.h" | ||
| 480 | |||
| 481 | {Src}floatfns.c.x Ä ¶ | ||
| 482 | {CONFIG_H_GROUP} ¶ | ||
| 483 | "{Src}lisp.h" ¶ | ||
| 484 | "{Src}syssignal.h" | ||
| 485 | |||
| 486 | {Src}fns.c.x Ä ¶ | ||
| 487 | {CONFIG_H_GROUP} ¶ | ||
| 488 | "{Src}lisp.h" ¶ | ||
| 489 | "{Src}commands.h" ¶ | ||
| 490 | "{Src}charset.h" ¶ | ||
| 491 | "{Src}buffer.h" ¶ | ||
| 492 | "{Src}keyboard.h" ¶ | ||
| 493 | {INTERVALS_H_GROUP} ¶ | ||
| 494 | "{Src}frame.h" ¶ | ||
| 495 | {WINDOW_H_GROUP} | ||
| 496 | |||
| 497 | {Src}fontset.c.x Ä ¶ | ||
| 498 | {CONFIG_H_GROUP} ¶ | ||
| 499 | "{Src}lisp.h" ¶ | ||
| 500 | "{Src}buffer.h" ¶ | ||
| 501 | "{Src}charset.h" ¶ | ||
| 502 | "{Src}ccl.h" ¶ | ||
| 503 | "{Src}frame.h" ¶ | ||
| 504 | {DISPEXTERN_H_GROUP} ¶ | ||
| 505 | "{Src}fontset.h" ¶ | ||
| 506 | {WINDOW_H_GROUP} | ||
| 507 | |||
| 508 | {Src}frame.c.x Ä ¶ | ||
| 509 | {CONFIG_H_GROUP} ¶ | ||
| 510 | "{Src}lisp.h" ¶ | ||
| 511 | "{Src}charset.h" ¶ | ||
| 512 | "{Src}fontset.h" ¶ | ||
| 513 | "{Src}macterm.h" ¶ | ||
| 514 | "{Src}macgui.h" ¶ | ||
| 515 | "{Src}frame.h" ¶ | ||
| 516 | "{Src}frame.h" ¶ | ||
| 517 | "{Src}fontset.h" ¶ | ||
| 518 | "{Src}termhooks.h" ¶ | ||
| 519 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 520 | {DISPEXTERN_H_GROUP} ¶ | ||
| 521 | {WINDOW_H_GROUP} ¶ | ||
| 522 | "{Src}buffer.h" ¶ | ||
| 523 | "{Src}commands.h" ¶ | ||
| 524 | "{Src}keyboard.h" | ||
| 525 | |||
| 526 | {Src}fringe.c.x Ä ¶ | ||
| 527 | {CONFIG_H_GROUP} ¶ | ||
| 528 | "{Src}lisp.h" ¶ | ||
| 529 | "{Src}frame.h" ¶ | ||
| 530 | {WINDOW_H_GROUP} ¶ | ||
| 531 | "{Src}buffer.h" ¶ | ||
| 532 | {BLOCKINPUT_H_GROUP} | ||
| 533 | |||
| 534 | {Src}getloadavg.c.x Ä ¶ | ||
| 535 | {CONFIG_H_GROUP} ¶ | ||
| 536 | "{Includes}sys:types.h" | ||
| 537 | |||
| 538 | {Src}image.c.x Ä ¶ | ||
| 539 | {CONFIG_H_GROUP} ¶ | ||
| 540 | "{Src}lisp.h" ¶ | ||
| 541 | "{Src}frame.h" ¶ | ||
| 542 | {WINDOW_H_GROUP} ¶ | ||
| 543 | {DISPEXTERN_H_GROUP} ¶ | ||
| 544 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 545 | "{Includes}epaths.h" ¶ | ||
| 546 | "{Src}macterm.h" ¶ | ||
| 547 | "{Src}macgui.h" ¶ | ||
| 548 | "{Src}frame.h" ¶ | ||
| 549 | "{Includes}sys:stat.h" ¶ | ||
| 550 | "{Includes}alloca.h" ¶ | ||
| 551 | "{Includes}sys:param.h" | ||
| 552 | |||
| 553 | {Src}indent.c.x Ä ¶ | ||
| 554 | {CONFIG_H_GROUP} ¶ | ||
| 555 | "{Src}lisp.h" ¶ | ||
| 556 | "{Src}buffer.h" ¶ | ||
| 557 | "{Src}charset.h" ¶ | ||
| 558 | "{Src}category.h" ¶ | ||
| 559 | "{Src}indent.h" ¶ | ||
| 560 | "{Src}frame.h" ¶ | ||
| 561 | {WINDOW_H_GROUP} ¶ | ||
| 562 | "{Src}termchar.h" ¶ | ||
| 563 | "{Src}termopts.h" ¶ | ||
| 564 | "{Src}disptab.h" ¶ | ||
| 565 | {INTERVALS_H_GROUP} ¶ | ||
| 566 | "{Src}region-cache.h" | ||
| 567 | |||
| 568 | {Src}insdel.c.x Ä ¶ | ||
| 569 | {CONFIG_H_GROUP} ¶ | ||
| 570 | "{Src}lisp.h" ¶ | ||
| 571 | {INTERVALS_H_GROUP} ¶ | ||
| 572 | "{Src}buffer.h" ¶ | ||
| 573 | "{Src}charset.h" ¶ | ||
| 574 | {WINDOW_H_GROUP} ¶ | ||
| 575 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 576 | "{Src}region-cache.h" | ||
| 577 | |||
| 578 | {Src}intervals.c.x Ä ¶ | ||
| 579 | {CONFIG_H_GROUP} ¶ | ||
| 580 | "{Src}lisp.h" ¶ | ||
| 581 | {INTERVALS_H_GROUP} ¶ | ||
| 582 | "{Src}buffer.h" ¶ | ||
| 583 | "{Src}puresize.h" ¶ | ||
| 584 | "{Src}keyboard.h" | ||
| 585 | |||
| 586 | {Src}keyboard.c.x Ä ¶ | ||
| 587 | {CONFIG_H_GROUP} ¶ | ||
| 588 | "{Src}termchar.h" ¶ | ||
| 589 | "{Src}termopts.h" ¶ | ||
| 590 | "{Src}lisp.h" ¶ | ||
| 591 | "{Src}termhooks.h" ¶ | ||
| 592 | "{Src}macros.h" ¶ | ||
| 593 | "{Src}frame.h" ¶ | ||
| 594 | {WINDOW_H_GROUP} ¶ | ||
| 595 | "{Src}commands.h" ¶ | ||
| 596 | "{Src}buffer.h" ¶ | ||
| 597 | "{Src}charset.h" ¶ | ||
| 598 | {DISPEXTERN_H_GROUP} ¶ | ||
| 599 | "{Src}keyboard.h" ¶ | ||
| 600 | "{Src}syntax.h" ¶ | ||
| 601 | {INTERVALS_H_GROUP} ¶ | ||
| 602 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 603 | "{Src}puresize.h" ¶ | ||
| 604 | "{Src}systime.h" ¶ | ||
| 605 | "{Src}atimer.h" ¶ | ||
| 606 | "{Includes}sys:ioctl.h" ¶ | ||
| 607 | "{Src}syssignal.h" ¶ | ||
| 608 | "{Src}systty.h" ¶ | ||
| 609 | "{Includes}termio.h" ¶ | ||
| 610 | "{Includes}sys:types.h" ¶ | ||
| 611 | "{Src}macterm.h" ¶ | ||
| 612 | "{Src}macgui.h" ¶ | ||
| 613 | "{Src}frame.h" ¶ | ||
| 614 | "{Src}systime.h" | ||
| 615 | |||
| 616 | {Src}keymap.c.x Ä ¶ | ||
| 617 | {CONFIG_H_GROUP} ¶ | ||
| 618 | "{Src}lisp.h" ¶ | ||
| 619 | "{Src}commands.h" ¶ | ||
| 620 | "{Src}buffer.h" ¶ | ||
| 621 | "{Src}charset.h" ¶ | ||
| 622 | "{Src}keyboard.h" ¶ | ||
| 623 | "{Src}termhooks.h" ¶ | ||
| 624 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 625 | "{Src}puresize.h" ¶ | ||
| 626 | {INTERVALS_H_GROUP} | ||
| 627 | |||
| 628 | {Src}lastfile.c.x Ä ¶ | ||
| 629 | {CONFIG_H_GROUP} | ||
| 630 | |||
| 631 | {Src}lread.c.x Ä ¶ | ||
| 632 | {CONFIG_H_GROUP} ¶ | ||
| 633 | "{Includes}sys:types.h" ¶ | ||
| 634 | "{Includes}sys:stat.h" ¶ | ||
| 635 | "{Includes}sys:file.h" ¶ | ||
| 636 | "{Src}lisp.h" ¶ | ||
| 637 | {INTERVALS_H_GROUP} ¶ | ||
| 638 | "{Src}buffer.h" ¶ | ||
| 639 | "{Src}charset.h" ¶ | ||
| 640 | "{Includes}epaths.h" ¶ | ||
| 641 | "{Src}commands.h" ¶ | ||
| 642 | "{Src}keyboard.h" ¶ | ||
| 643 | "{Src}termhooks.h" ¶ | ||
| 644 | {BLOCKINPUT_H_GROUP} | ||
| 645 | |||
| 646 | {Src}macros.c.x Ä ¶ | ||
| 647 | {CONFIG_H_GROUP} ¶ | ||
| 648 | "{Src}lisp.h" ¶ | ||
| 649 | "{Src}macros.h" ¶ | ||
| 650 | "{Src}commands.h" ¶ | ||
| 651 | "{Src}buffer.h" ¶ | ||
| 652 | {WINDOW_H_GROUP} ¶ | ||
| 653 | "{Src}keyboard.h" | ||
| 654 | |||
| 655 | {Src}marker.c.x Ä ¶ | ||
| 656 | {CONFIG_H_GROUP} ¶ | ||
| 657 | "{Src}lisp.h" ¶ | ||
| 658 | "{Src}buffer.h" ¶ | ||
| 659 | "{Src}charset.h" | ||
| 660 | |||
| 661 | {Src}minibuf.c.x Ä ¶ | ||
| 662 | {CONFIG_H_GROUP} ¶ | ||
| 663 | "{Src}lisp.h" ¶ | ||
| 664 | "{Src}commands.h" ¶ | ||
| 665 | "{Src}buffer.h" ¶ | ||
| 666 | "{Src}charset.h" ¶ | ||
| 667 | {DISPEXTERN_H_GROUP} ¶ | ||
| 668 | "{Src}frame.h" ¶ | ||
| 669 | {WINDOW_H_GROUP} ¶ | ||
| 670 | "{Src}syntax.h" ¶ | ||
| 671 | "{Src}keyboard.h" | ||
| 672 | |||
| 673 | {Src}mktime.c.x Ä ¶ | ||
| 674 | {CONFIG_H_GROUP} ¶ | ||
| 675 | "{Includes}sys:types.h" | ||
| 676 | |||
| 677 | {Src}print.c.x Ä ¶ | ||
| 678 | {CONFIG_H_GROUP} ¶ | ||
| 679 | "{Src}lisp.h" ¶ | ||
| 680 | "{Src}buffer.h" ¶ | ||
| 681 | "{Src}charset.h" ¶ | ||
| 682 | "{Src}frame.h" ¶ | ||
| 683 | {WINDOW_H_GROUP} ¶ | ||
| 684 | "{Src}process.h" ¶ | ||
| 685 | {DISPEXTERN_H_GROUP} ¶ | ||
| 686 | "{Src}termchar.h" ¶ | ||
| 687 | "{Src}keyboard.h" ¶ | ||
| 688 | {INTERVALS_H_GROUP} ¶ | ||
| 689 | {BLOCKINPUT_H_GROUP} | ||
| 690 | |||
| 691 | {Src}process.c.x Ä ¶ | ||
| 692 | {CONFIG_H_GROUP} ¶ | ||
| 693 | "{Includes}sys:types.h" ¶ | ||
| 694 | "{Src}lisp.h" ¶ | ||
| 695 | "{Src}systime.h" ¶ | ||
| 696 | "{Includes}sys:time.h" ¶ | ||
| 697 | "{Src}charset.h" ¶ | ||
| 698 | "{Src}coding.h" ¶ | ||
| 699 | "{Src}ccl.h" ¶ | ||
| 700 | "{Src}termopts.h" ¶ | ||
| 701 | "{Src}sysselect.h" | ||
| 702 | |||
| 703 | {Src}regex.c.x Ä ¶ | ||
| 704 | {CONFIG_H_GROUP} ¶ | ||
| 705 | "{Includes}sys:types.h" ¶ | ||
| 706 | "{Src}lisp.h" ¶ | ||
| 707 | "{Src}buffer.h" ¶ | ||
| 708 | "{Src}syntax.h" ¶ | ||
| 709 | "{Src}charset.h" ¶ | ||
| 710 | "{Src}category.h" ¶ | ||
| 711 | "{Src}regex.h" | ||
| 712 | |||
| 713 | {Src}region-cache.c.x Ä ¶ | ||
| 714 | {CONFIG_H_GROUP} ¶ | ||
| 715 | "{Src}lisp.h" ¶ | ||
| 716 | "{Src}buffer.h" ¶ | ||
| 717 | "{Src}region-cache.h" | ||
| 718 | |||
| 719 | {Src}scroll.c.x Ä ¶ | ||
| 720 | {CONFIG_H_GROUP} ¶ | ||
| 721 | "{Src}termchar.h" ¶ | ||
| 722 | "{Src}lisp.h" ¶ | ||
| 723 | {DISPEXTERN_H_GROUP} ¶ | ||
| 724 | "{Src}frame.h" ¶ | ||
| 725 | {WINDOW_H_GROUP} | ||
| 726 | |||
| 727 | {Src}search.c.x Ä ¶ | ||
| 728 | {CONFIG_H_GROUP} ¶ | ||
| 729 | "{Src}lisp.h" ¶ | ||
| 730 | "{Src}syntax.h" ¶ | ||
| 731 | "{Src}category.h" ¶ | ||
| 732 | "{Src}buffer.h" ¶ | ||
| 733 | "{Src}charset.h" ¶ | ||
| 734 | "{Src}region-cache.h" ¶ | ||
| 735 | "{Src}commands.h" ¶ | ||
| 736 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 737 | {INTERVALS_H_GROUP} ¶ | ||
| 738 | "{Includes}sys:types.h" ¶ | ||
| 739 | "{Src}regex.h" | ||
| 740 | |||
| 741 | {Src}strftime.c.x Ä ¶ | ||
| 742 | {CONFIG_H_GROUP} ¶ | ||
| 743 | "{Includes}sys:types.h" ¶ | ||
| 744 | "{Includes}sys:time.h" | ||
| 745 | |||
| 746 | {Src}syntax.c.x Ä ¶ | ||
| 747 | {CONFIG_H_GROUP} ¶ | ||
| 748 | "{Src}lisp.h" ¶ | ||
| 749 | "{Src}commands.h" ¶ | ||
| 750 | "{Src}buffer.h" ¶ | ||
| 751 | "{Src}charset.h" ¶ | ||
| 752 | "{Src}syntax.h" ¶ | ||
| 753 | {INTERVALS_H_GROUP} ¶ | ||
| 754 | "{Src}category.h" | ||
| 755 | |||
| 756 | {Src}sysdep.c.x Ä ¶ | ||
| 757 | {CONFIG_H_GROUP} ¶ | ||
| 758 | "{Src}lisp.h" ¶ | ||
| 759 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 760 | "{Includes}sys:types.h" ¶ | ||
| 761 | "{Includes}sys:stat.h" ¶ | ||
| 762 | "{Includes}sys:ioctl.h" ¶ | ||
| 763 | "{Src}syswait.h" ¶ | ||
| 764 | "{Includes}sys:types.h" ¶ | ||
| 765 | "{Src}frame.h" ¶ | ||
| 766 | {WINDOW_H_GROUP} ¶ | ||
| 767 | "{Src}termhooks.h" ¶ | ||
| 768 | "{Src}termchar.h" ¶ | ||
| 769 | "{Src}termopts.h" ¶ | ||
| 770 | {DISPEXTERN_H_GROUP} ¶ | ||
| 771 | "{Src}process.h" ¶ | ||
| 772 | "{Src}syssignal.h" ¶ | ||
| 773 | "{Src}systime.h" ¶ | ||
| 774 | "{Includes}utime.h" ¶ | ||
| 775 | "{Src}sysselect.h" ¶ | ||
| 776 | "{Includes}dirent.h" ¶ | ||
| 777 | "{Includes}sys:types.h" | ||
| 778 | |||
| 779 | {Src}term.c.x Ä ¶ | ||
| 780 | {CONFIG_H_GROUP} ¶ | ||
| 781 | "{Src}termchar.h" ¶ | ||
| 782 | "{Src}termopts.h" ¶ | ||
| 783 | "{Src}lisp.h" ¶ | ||
| 784 | "{Src}charset.h" ¶ | ||
| 785 | "{Src}coding.h" ¶ | ||
| 786 | "{Src}ccl.h" ¶ | ||
| 787 | "{Src}frame.h" ¶ | ||
| 788 | "{Src}disptab.h" ¶ | ||
| 789 | "{Src}termhooks.h" ¶ | ||
| 790 | "{Src}keyboard.h" ¶ | ||
| 791 | {DISPEXTERN_H_GROUP} ¶ | ||
| 792 | {WINDOW_H_GROUP} ¶ | ||
| 793 | "{Src}cm.h" ¶ | ||
| 794 | "{Src}macterm.h" ¶ | ||
| 795 | "{Src}macgui.h" ¶ | ||
| 796 | "{Src}frame.h" ¶ | ||
| 797 | {BLOCKINPUT_H_GROUP} | ||
| 798 | |||
| 799 | {Src}termcap.c.x Ä ¶ | ||
| 800 | {CONFIG_H_GROUP} ¶ | ||
| 801 | "{Src}lisp.h" ¶ | ||
| 802 | "{Includes}sys:file.h" | ||
| 803 | |||
| 804 | {Src}terminal.c.x Ä ¶ | ||
| 805 | {CONFIG_H_GROUP} ¶ | ||
| 806 | "{Src}lisp.h" ¶ | ||
| 807 | "{Src}frame.h" ¶ | ||
| 808 | "{Src}termchar.h" ¶ | ||
| 809 | "{Src}termhooks.h" ¶ | ||
| 810 | "{Src}charset.h" ¶ | ||
| 811 | "{Src}coding.h" ¶ | ||
| 812 | "{Src}keyboard.h" | ||
| 813 | |||
| 814 | {Src}textproc.c.x Ä ¶ | ||
| 815 | {CONFIG_H_GROUP} ¶ | ||
| 816 | "{Src}lisp.h" ¶ | ||
| 817 | {INTERVALS_H_GROUP} ¶ | ||
| 818 | "{Src}buffer.h" ¶ | ||
| 819 | {WINDOW_H_GROUP} | ||
| 820 | |||
| 821 | {Src}tparam.c.x Ä ¶ | ||
| 822 | {CONFIG_H_GROUP} ¶ | ||
| 823 | "{Src}lisp.h" | ||
| 824 | |||
| 825 | {Src}undo.c.x Ä ¶ | ||
| 826 | {CONFIG_H_GROUP} ¶ | ||
| 827 | "{Src}lisp.h" ¶ | ||
| 828 | "{Src}buffer.h" ¶ | ||
| 829 | "{Src}commands.h" | ||
| 830 | |||
| 831 | {Src}window.c.x Ä ¶ | ||
| 832 | {CONFIG_H_GROUP} ¶ | ||
| 833 | "{Src}lisp.h" ¶ | ||
| 834 | "{Src}buffer.h" ¶ | ||
| 835 | "{Src}frame.h" ¶ | ||
| 836 | {WINDOW_H_GROUP} ¶ | ||
| 837 | "{Src}commands.h" ¶ | ||
| 838 | "{Src}indent.h" ¶ | ||
| 839 | "{Src}termchar.h" ¶ | ||
| 840 | "{Src}disptab.h" ¶ | ||
| 841 | "{Src}keyboard.h" ¶ | ||
| 842 | {DISPEXTERN_H_GROUP} ¶ | ||
| 843 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 844 | {INTERVALS_H_GROUP} ¶ | ||
| 845 | "{Src}macterm.h" ¶ | ||
| 846 | "{Src}macgui.h" ¶ | ||
| 847 | "{Src}frame.h" | ||
| 848 | |||
| 849 | {Src}xdisp.c.x Ä ¶ | ||
| 850 | {CONFIG_H_GROUP} ¶ | ||
| 851 | "{Src}lisp.h" ¶ | ||
| 852 | "{Src}frame.h" ¶ | ||
| 853 | {WINDOW_H_GROUP} ¶ | ||
| 854 | "{Src}termchar.h" ¶ | ||
| 855 | {DISPEXTERN_H_GROUP} ¶ | ||
| 856 | "{Src}buffer.h" ¶ | ||
| 857 | "{Src}charset.h" ¶ | ||
| 858 | "{Src}indent.h" ¶ | ||
| 859 | "{Src}commands.h" ¶ | ||
| 860 | "{Src}macros.h" ¶ | ||
| 861 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 862 | "{Src}disptab.h" ¶ | ||
| 863 | "{Src}termhooks.h" ¶ | ||
| 864 | {INTERVALS_H_GROUP} ¶ | ||
| 865 | "{Src}keyboard.h" ¶ | ||
| 866 | "{Src}keymap.h" ¶ | ||
| 867 | "{Src}coding.h" ¶ | ||
| 868 | "{Src}ccl.h" ¶ | ||
| 869 | "{Src}process.h" ¶ | ||
| 870 | "{Src}region-cache.h" ¶ | ||
| 871 | "{Src}fontset.h" ¶ | ||
| 872 | "{Src}macterm.h" ¶ | ||
| 873 | "{Src}macgui.h" ¶ | ||
| 874 | "{Src}frame.h" | ||
| 875 | |||
| 876 | {Src}xfaces.c.x Ä ¶ | ||
| 877 | {CONFIG_H_GROUP} ¶ | ||
| 878 | "{Includes}sys:types.h" ¶ | ||
| 879 | "{Includes}sys:stat.h" ¶ | ||
| 880 | "{Src}lisp.h" ¶ | ||
| 881 | "{Src}charset.h" ¶ | ||
| 882 | "{Src}frame.h" ¶ | ||
| 883 | "{Src}fontset.h" ¶ | ||
| 884 | "{Src}macterm.h" ¶ | ||
| 885 | "{Src}macgui.h" ¶ | ||
| 886 | "{Src}frame.h" ¶ | ||
| 887 | "{Src}buffer.h" ¶ | ||
| 888 | {DISPEXTERN_H_GROUP} ¶ | ||
| 889 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 890 | {WINDOW_H_GROUP} ¶ | ||
| 891 | {INTERVALS_H_GROUP} ¶ | ||
| 892 | "{Src}keyboard.h" | ||
| 893 | |||
| 894 | {Src}macmenu.c.x Ä ¶ | ||
| 895 | {CONFIG_H_GROUP} ¶ | ||
| 896 | "{Src}lisp.h" ¶ | ||
| 897 | "{Src}termhooks.h" ¶ | ||
| 898 | "{Src}frame.h" ¶ | ||
| 899 | {WINDOW_H_GROUP} ¶ | ||
| 900 | "{Src}keyboard.h" ¶ | ||
| 901 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 902 | "{Src}buffer.h" ¶ | ||
| 903 | "{Includes}sys:types.h" ¶ | ||
| 904 | {DISPEXTERN_H_GROUP} | ||
| 905 | |||
| 906 | {Src}macselect.c.x Ä ¶ | ||
| 907 | {CONFIG_H_GROUP} ¶ | ||
| 908 | "{Src}lisp.h" ¶ | ||
| 909 | "{Src}macterm.h" ¶ | ||
| 910 | "{Src}macgui.h" ¶ | ||
| 911 | "{Src}frame.h" ¶ | ||
| 912 | "{Src}keymap.h" ¶ | ||
| 913 | {BLOCKINPUT_H_GROUP} | ||
| 914 | |||
| 915 | {Src}mac.c Ä ¶ | ||
| 916 | {CONFIG_H_GROUP} ¶ | ||
| 917 | "{Includes}utime.h" ¶ | ||
| 918 | "{Includes}dirent.h" ¶ | ||
| 919 | "{Includes}sys:types.h" ¶ | ||
| 920 | "{Includes}sys:stat.h" ¶ | ||
| 921 | "{Includes}pwd.h" ¶ | ||
| 922 | "{Includes}sys:types.h" ¶ | ||
| 923 | "{Includes}sys:param.h" ¶ | ||
| 924 | "{Src}lisp.h" ¶ | ||
| 925 | "{Src}process.h" ¶ | ||
| 926 | "{Src}sysselect.h" ¶ | ||
| 927 | "{Src}systime.h" ¶ | ||
| 928 | "{Includes}sys:time.h" ¶ | ||
| 929 | "{Includes}utsname.h" ¶ | ||
| 930 | "{Src}macterm.h" ¶ | ||
| 931 | "{Src}macgui.h" ¶ | ||
| 932 | "{Src}frame.h" ¶ | ||
| 933 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 934 | "{Src}charset.h" ¶ | ||
| 935 | "{Src}coding.h" ¶ | ||
| 936 | "{Src}ccl.h" | ||
| 937 | |||
| 938 | {Src}macfns.c Ä ¶ | ||
| 939 | {CONFIG_H_GROUP} ¶ | ||
| 940 | "{Src}lisp.h" ¶ | ||
| 941 | "{Src}charset.h" ¶ | ||
| 942 | "{Src}macterm.h" ¶ | ||
| 943 | "{Src}macgui.h" ¶ | ||
| 944 | "{Src}frame.h" ¶ | ||
| 945 | "{Src}frame.h" ¶ | ||
| 946 | {WINDOW_H_GROUP} ¶ | ||
| 947 | "{Src}buffer.h" ¶ | ||
| 948 | {DISPEXTERN_H_GROUP} ¶ | ||
| 949 | "{Src}fontset.h" ¶ | ||
| 950 | {INTERVALS_H_GROUP} ¶ | ||
| 951 | "{Src}keyboard.h" ¶ | ||
| 952 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 953 | "{Includes}epaths.h" ¶ | ||
| 954 | "{Src}termhooks.h" ¶ | ||
| 955 | "{Src}coding.h" ¶ | ||
| 956 | "{Src}ccl.h" ¶ | ||
| 957 | "{Src}systime.h" ¶ | ||
| 958 | "{Src}bitmaps:gray.xbm" | ||
| 959 | |||
| 960 | {Src}macterm.c Ä ¶ | ||
| 961 | {CONFIG_H_GROUP} ¶ | ||
| 962 | "{Src}lisp.h" ¶ | ||
| 963 | {BLOCKINPUT_H_GROUP} ¶ | ||
| 964 | "{Src}syssignal.h" ¶ | ||
| 965 | "{Src}macterm.h" ¶ | ||
| 966 | "{Src}macgui.h" ¶ | ||
| 967 | "{Src}frame.h" ¶ | ||
| 968 | "{Includes}alloca.h" ¶ | ||
| 969 | "{Includes}sys:types.h" ¶ | ||
| 970 | "{Src}systty.h" ¶ | ||
| 971 | "{Includes}termio.h" ¶ | ||
| 972 | "{Src}systime.h" ¶ | ||
| 973 | "{Includes}sys:stat.h" ¶ | ||
| 974 | "{Src}charset.h" ¶ | ||
| 975 | "{Src}ccl.h" ¶ | ||
| 976 | "{Src}frame.h" ¶ | ||
| 977 | {DISPEXTERN_H_GROUP} ¶ | ||
| 978 | "{Src}fontset.h" ¶ | ||
| 979 | "{Src}termhooks.h" ¶ | ||
| 980 | "{Src}termopts.h" ¶ | ||
| 981 | "{Src}termchar.h" ¶ | ||
| 982 | "{Src}gnu.h" ¶ | ||
| 983 | "{Src}disptab.h" ¶ | ||
| 984 | "{Src}buffer.h" ¶ | ||
| 985 | {WINDOW_H_GROUP} ¶ | ||
| 986 | "{Src}keyboard.h" ¶ | ||
| 987 | {INTERVALS_H_GROUP} ¶ | ||
| 988 | "{Src}process.h" ¶ | ||
| 989 | "{Src}atimer.h" ¶ | ||
| 990 | "{Src}coding.h" ¶ | ||
| 991 | "{Src}ccl.h" ¶ | ||
| 992 | "{Includes}epaths.h" ¶ | ||
| 993 | "{Src}termhooks.h" ¶ | ||
| 994 | "{Src}coding.h" ¶ | ||
| 995 | "{Src}ccl.h" | ||
| 996 | |||
| 997 | |||
| 998 | #----------------------------------------# | ||
| 999 | # Variables and rules for target "Clean" # | ||
| 1000 | #----------------------------------------# | ||
| 1001 | |||
| 1002 | Clean Ä | ||
| 1003 | Delete -i {EmacsObjects} {MacObjects} | ||
| 1004 | Delete -i "{EmacsTarget}" | ||
| 1005 | Delete -i stdout stderr | ||
| 1006 | Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile | ||
| 1007 | Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r | ||
| 1008 | Delete -i "{NonCarbonMakeOut}" | ||
| 1009 | Delete -i buildobj.lst | ||
| 1010 | |||
| 1011 | DistClean Ä Clean | ||
| 1012 | Delete -i "Emacs CW"Å | ||
| 1013 | Delete -y "emacs Data" | ||
| 1014 | Delete -i emacs.mcp | ||
| 1015 | |||
| 1016 | #--------------------------------------# | ||
| 1017 | # Variables and rules for target "Doc" # | ||
| 1018 | #--------------------------------------# | ||
| 1019 | |||
| 1020 | SOME_MACHINE_OBJECTS = dosfns.o msdos.o ¶ | ||
| 1021 | xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o ¶ | ||
| 1022 | mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o ¶ | ||
| 1023 | w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o ¶ | ||
| 1024 | w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o | ||
| 1025 | |||
| 1026 | shortlisp = ¶ | ||
| 1027 | {Lisp}abbrev.elc ¶ | ||
| 1028 | {Lisp}buff-menu.elc ¶ | ||
| 1029 | {Lisp}button.elc ¶ | ||
| 1030 | {Lisp}server.elc ¶ | ||
| 1031 | {Lisp}emacs-lisp:byte-run.elc ¶ | ||
| 1032 | {Lisp}cus-face.elc ¶ | ||
| 1033 | {Lisp}cus-start.elc ¶ | ||
| 1034 | {Lisp}custom.elc ¶ | ||
| 1035 | {Lisp}emacs-lisp:backquote.elc ¶ | ||
| 1036 | {Lisp}emacs-lisp:lisp-mode.elc ¶ | ||
| 1037 | {Lisp}emacs-lisp:lisp.elc ¶ | ||
| 1038 | {Lisp}facemenu.elc ¶ | ||
| 1039 | {Lisp}faces.elc ¶ | ||
| 1040 | {Lisp}files.elc ¶ | ||
| 1041 | {Lisp}emacs-lisp:float-sup.elc ¶ | ||
| 1042 | {Lisp}format.elc ¶ | ||
| 1043 | {Lisp}frame.elc ¶ | ||
| 1044 | {Lisp}termdev.elc ¶ | ||
| 1045 | {Lisp}help.elc ¶ | ||
| 1046 | {Lisp}indent.elc ¶ | ||
| 1047 | {Lisp}isearch.elc ¶ | ||
| 1048 | {Lisp}rfn-eshadow.elc ¶ | ||
| 1049 | {Lisp}loadup.el ¶ | ||
| 1050 | {Lisp}loaddefs.el ¶ | ||
| 1051 | {Lisp}bindings.elc ¶ | ||
| 1052 | {Lisp}emacs-lisp:map-ynp.elc ¶ | ||
| 1053 | {Lisp}env.elc ¶ | ||
| 1054 | {Lisp}international:mule.elc ¶ | ||
| 1055 | {Lisp}international:mule-conf.el ¶ | ||
| 1056 | {Lisp}international:mule-cmds.elc ¶ | ||
| 1057 | {Lisp}international:characters.elc ¶ | ||
| 1058 | {Lisp}international:ucs-tables.elc ¶ | ||
| 1059 | {Lisp}international:utf-8.elc ¶ | ||
| 1060 | {Lisp}international:utf-16.elc ¶ | ||
| 1061 | {Lisp}international:latin-1.el ¶ | ||
| 1062 | {Lisp}international:latin-2.el ¶ | ||
| 1063 | {Lisp}international:latin-3.el ¶ | ||
| 1064 | {Lisp}international:latin-4.el ¶ | ||
| 1065 | {Lisp}international:latin-5.el ¶ | ||
| 1066 | {Lisp}international:latin-8.el ¶ | ||
| 1067 | {Lisp}international:latin-9.el ¶ | ||
| 1068 | {Lisp}case-table.elc ¶ | ||
| 1069 | {Lisp}language:chinese.elc ¶ | ||
| 1070 | {Lisp}language:cyrillic.elc ¶ | ||
| 1071 | {Lisp}language:indian.elc ¶ | ||
| 1072 | {Lisp}language:devanagari.el ¶ | ||
| 1073 | {Lisp}language:kannada.el ¶ | ||
| 1074 | {Lisp}language:malayalam.el ¶ | ||
| 1075 | {Lisp}language:tamil.el ¶ | ||
| 1076 | {Lisp}language:english.el ¶ | ||
| 1077 | {Lisp}language:ethiopic.elc ¶ | ||
| 1078 | {Lisp}language:european.elc ¶ | ||
| 1079 | {Lisp}language:czech.el ¶ | ||
| 1080 | {Lisp}language:slovak.el ¶ | ||
| 1081 | {Lisp}language:romanian.el ¶ | ||
| 1082 | {Lisp}language:greek.el ¶ | ||
| 1083 | {Lisp}language:hebrew.el ¶ | ||
| 1084 | {Lisp}language:japanese.el ¶ | ||
| 1085 | {Lisp}language:korean.el ¶ | ||
| 1086 | {Lisp}language:lao.el ¶ | ||
| 1087 | {Lisp}language:thai.el ¶ | ||
| 1088 | {Lisp}language:tibetan.elc ¶ | ||
| 1089 | {Lisp}language:vietnamese.elc ¶ | ||
| 1090 | {Lisp}language:misc-lang.el ¶ | ||
| 1091 | {Lisp}language:utf-8-lang.el ¶ | ||
| 1092 | {Lisp}language:georgian.el ¶ | ||
| 1093 | {Lisp}menu-bar.elc ¶ | ||
| 1094 | {Lisp}paths.el ¶ | ||
| 1095 | {Lisp}register.elc ¶ | ||
| 1096 | {Lisp}replace.elc ¶ | ||
| 1097 | {Lisp}simple.elc ¶ | ||
| 1098 | {Lisp}startup.elc ¶ | ||
| 1099 | {Lisp}subr.elc ¶ | ||
| 1100 | {Lisp}term:tty-colors.elc ¶ | ||
| 1101 | {Lisp}font-core.elc ¶ | ||
| 1102 | {Lisp}emacs-lisp:syntax.elc ¶ | ||
| 1103 | {Lisp}font-lock.elc ¶ | ||
| 1104 | {Lisp}jit-lock.elc ¶ | ||
| 1105 | {Lisp}textmodes:fill.elc ¶ | ||
| 1106 | {Lisp}textmodes:page.elc ¶ | ||
| 1107 | {Lisp}textmodes:paragraphs.elc ¶ | ||
| 1108 | {Lisp}textmodes:text-mode.elc ¶ | ||
| 1109 | {Lisp}emacs-lisp:timer.elc ¶ | ||
| 1110 | {Lisp}vc-hooks.elc ¶ | ||
| 1111 | {Lisp}jka-cmpr-hook.elc ¶ | ||
| 1112 | {Lisp}ediff-hook.elc ¶ | ||
| 1113 | {Lisp}widget.elc ¶ | ||
| 1114 | {Lisp}window.elc ¶ | ||
| 1115 | {Lisp}version.el | ||
| 1116 | |||
| 1117 | SOME_MACHINE_LISP = {Lisp}mouse.elc ¶ | ||
| 1118 | {Lisp}select.elc {Lisp}scroll-bar.elc ¶ | ||
| 1119 | {Lisp}vmsproc.elc {Lisp}vms-patch.elc ¶ | ||
| 1120 | {Lisp}ls-lisp.elc {Lisp}dos-fns.elc ¶ | ||
| 1121 | {Lisp}w32-fns.elc {Lisp}dos-w32.elc ¶ | ||
| 1122 | {Lisp}disp-table.elc {Lisp}dos-vars.elc ¶ | ||
| 1123 | {Lisp}tooltip.elc {Lisp}image.elc ¶ | ||
| 1124 | {Lisp}fringe.elc {Lisp}dnd.elc ¶ | ||
| 1125 | {Lisp}mwheel.elc {Lisp}tool-bar.elc ¶ | ||
| 1126 | {Lisp}x-dnd.elc ¶ | ||
| 1127 | {Lisp}international:ccl.elc ¶ | ||
| 1128 | {Lisp}international:codepage.elc ¶ | ||
| 1129 | {Lisp}international:fontset.elc | ||
| 1130 | |||
| 1131 | Doc Ä {DocTarget}DOC | ||
| 1132 | |||
| 1133 | {DocTarget}DOC Ä {Makefile} {shortlisp} {SOME_MACHINE_LISP} {Make-DocFileDir}Make-DocFile buildobj.lst | ||
| 1134 | {Make-DocFileDir}make-docfile -d {Src} {SOME_MACHINE_OBJECTS} `Catenate buildobj.lst` > {DocTarget}DOC | ||
| 1135 | {Make-DocFileDir}make-docfile -a {DocTarget}DOC -d {Src} {SOME_MACHINE_LISP} {shortlisp} | ||
| 1136 | |||
| 1137 | |||
| 1138 | #-----------------------------------------------# | ||
| 1139 | # Variables and rules for target "Make-DocFile" # | ||
| 1140 | #-----------------------------------------------# | ||
| 1141 | |||
| 1142 | Make-DocFile-Includes = -i :inc: | ||
| 1143 | Make-DocFile-Sym = | ||
| 1144 | |||
| 1145 | Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR ¶ | ||
| 1146 | -d MAC_OS -d MAC_OS8 ¶ | ||
| 1147 | {Make-DocFile-Includes} {Make-DocFile-Sym} | ||
| 1148 | |||
| 1149 | Make-DocFile-Objects = ¶ | ||
| 1150 | "{Lib-Src}make-docfile.c.x" ¶ | ||
| 1151 | "{Source}chdir.c.x" | ||
| 1152 | |||
| 1153 | Make-DocFile Ä {Make-DocFileDir}Make-DocFile | ||
| 1154 | |||
| 1155 | {Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects} | ||
| 1156 | PPCLink ¶ | ||
| 1157 | -o {Make-DocFileDir}Make-DocFile ¶ | ||
| 1158 | {Make-DocFile-Sym} ¶ | ||
| 1159 | {Make-DocFile-Objects} ¶ | ||
| 1160 | -t 'MPST' ¶ | ||
| 1161 | -c 'MPS ' ¶ | ||
| 1162 | "{SharedLibraries}InterfaceLib" ¶ | ||
| 1163 | "{SharedLibraries}StdCLib" ¶ | ||
| 1164 | "{SharedLibraries}MathLib" ¶ | ||
| 1165 | "{PPCLibraries}StdCRuntime.o" ¶ | ||
| 1166 | "{PPCLibraries}PPCCRuntime.o" ¶ | ||
| 1167 | "{PPCLibraries}PPCToolLibs.o" | ||
| 1168 | |||
| 1169 | "{Lib-Src}make-docfile.c.x" Ä {Makefile} "{Lib-Src}make-docfile.c" | ||
| 1170 | {PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions} | ||
| 1171 | |||
| 1172 | "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c" | ||
| 1173 | {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions} | ||
| 1174 | |||
| 1175 | # arch-tag: c9d9bc1a-142f-41da-b75e-79e0c44ffbb4 | ||