diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 845e6cfce3b..9e96452c02f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1,34 +1,34 @@ | |||
| 1 | /* Makefile for GNU Emacs. | 1 | # Makefile for GNU Emacs. |
| 2 | Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc. | 2 | # Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | # This file is part of GNU Emacs. |
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | # GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | # it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2, or (at your option) | 8 | # the Free Software Foundation; either version 2, or (at your option) |
| 9 | any later version. | 9 | # any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | # GNU Emacs is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. | 14 | # GNU General Public License for more details. |
| 15 | 15 | ||
| 16 | You should have received a copy of the GNU General Public License | 16 | # You should have received a copy of the GNU General Public License |
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | 17 | # along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 18 | # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 19 | 19 | ||
| 20 | /* Here are the things that we expect ../configure to edit. */ | 20 | # Here are the things that we expect ../configure to edit. |
| 21 | srcdir=@srcdir@ | 21 | srcdir=@srcdir@ |
| 22 | VPATH=@srcdir@ | 22 | VPATH=@srcdir@ |
| 23 | CC=@CC@ | 23 | CC=@CC@ |
| 24 | CPP=@CPP@ | 24 | CPP=@CPP@ |
| 25 | CFLAGS=@CFLAGS@ | 25 | CFLAGS=@CFLAGS@ |
| 26 | LN_S=@LN_S@ | 26 | LN_S=@LN_S@ |
| 27 | /* Substitute an assignment for the MAKE variable, because | 27 | # Substitute an assignment for the MAKE variable, because |
| 28 | BSD doesn't have it as a default. */ | 28 | # BSD doesn't have it as a default. |
| 29 | @SET_MAKE@ | 29 | @SET_MAKE@ |
| 30 | 30 | ||
| 31 | /* On Xenix and the IBM RS6000, double-dot gets screwed up. */ | 31 | # On Xenix and the IBM RS6000, double-dot gets screwed up. |
| 32 | dot = . | 32 | dot = . |
| 33 | lispdir = ${srcdir}/$(dot)$(dot)/lisp/ | 33 | lispdir = ${srcdir}/$(dot)$(dot)/lisp/ |
| 34 | libsrc = $(dot)$(dot)/lib-src/ | 34 | libsrc = $(dot)$(dot)/lib-src/ |
| @@ -38,11 +38,14 @@ cppdir = $(dot)$(dot)/cpp/ | |||
| 38 | oldXMenudir = $(dot)$(dot)/oldXMenu/ | 38 | oldXMenudir = $(dot)$(dot)/oldXMenu/ |
| 39 | lwlibdir = $(dot)$(dot)/lwlib/ | 39 | lwlibdir = $(dot)$(dot)/lwlib/ |
| 40 | 40 | ||
| 41 | /* Configuration files for .o files to depend on. */ | 41 | # Configuration files for .o files to depend on. |
| 42 | M_FILE = ${srcdir}/@machfile@ | 42 | M_FILE = ${srcdir}/@machfile@ |
| 43 | S_FILE = ${srcdir}/@opsysfile@ | 43 | S_FILE = ${srcdir}/@opsysfile@ |
| 44 | config_h = config.h $(M_FILE) $(S_FILE) | 44 | config_h = config.h $(M_FILE) $(S_FILE) |
| 45 | 45 | ||
| 46 | # ========================== start of cpp stuff ======================= */ | ||
| 47 | /* From here on, comments must be done in C syntax. */ | ||
| 48 | |||
| 46 | CPPFLAGS= | 49 | CPPFLAGS= |
| 47 | LDFLAGS= | 50 | LDFLAGS= |
| 48 | C_SWITCH_SYSTEM= | 51 | C_SWITCH_SYSTEM= |