Mercurial > hg > xemacs-beta
comparison dynodump/Makefile.in.in @ 163:0132846995bd r20-3b8
Import from CVS: tag r20-3b8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:43:35 +0200 |
parents | 6b37e6ddd302 |
children | 929b76928fce |
comparison
equal
deleted
inserted
replaced
162:4de2936b4e77 | 163:0132846995bd |
---|---|
1 /* Hey Emacs, this is a -*- Makefile -*- */ | 1 ## Makefile for dynodump subdirectory in XEmacs |
2 ## Copyright (C) 1995 Board of Trustees, University of Illinois | |
3 ## Copyright (C) 1996, 1997 Sun Microsystems, Inc. | |
2 | 4 |
3 /* Makefile for dynodump subdirectory in XEmacs | 5 ## This file is part of XEmacs. |
4 Copyright (C) 1995 Board of Trustees, University of Illinois | |
5 | 6 |
6 This file is part of XEmacs. | 7 ## XEmacs is free software; you can redistribute it and/or modify it |
8 ## under the terms of the GNU General Public License as published by the | |
9 ## Free Software Foundation; either version 2, or (at your option) any | |
10 ## later version. | |
7 | 11 |
8 XEmacs is free software; you can redistribute it and/or modify it | 12 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT |
9 under the terms of the GNU General Public License as published by the | 13 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
10 Free Software Foundation; either version 2, or (at your option) any | 14 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
11 later version. | 15 ## for more details. |
12 | 16 |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | 17 ## You should have received a copy of the GNU General Public License |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 18 ## along with XEmacs; see the file COPYING. If not, write to |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | 19 ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
16 for more details. | 20 ## Boston, MA 02111-1307, USA. |
17 | 21 |
18 You should have received a copy of the GNU General Public License | 22 ## Synched up with: Not synched with FSF. |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | 23 |
23 /* Avoid trouble on systems where the "SHELL" variable might be | |
24 inherited from the environment. */ | |
25 SHELL = /bin/sh | 24 SHELL = /bin/sh |
26 | 25 |
27 /* Some people use these in paths they define. We do not want their paths | 26 ## ==================== Things "configure" will edit ==================== |
28 getting changed on them. */ | |
29 #undef sparc | |
30 #undef sun | |
31 #undef unix | |
32 #undef i386 | |
33 #undef ppc | |
34 #undef sgi | |
35 | |
36 /* ==================== Things "configure" will edit ==================== */ | |
37 | 27 |
38 CC=@CC@ | 28 CC=@CC@ |
39 CFLAGS=@CFLAGS@ | 29 CFLAGS=@CFLAGS@ |
40 ARCH=@dynodump_arch@ | 30 ARCH=@dynodump_arch@ |
41 | 31 |
42 srcdir=@srcdir@ | 32 srcdir=@srcdir@ |
43 | 33 |
44 /* ========================= start of cpp stuff ========================= */ | 34 ## ========================= start of cpp stuff ========================= |
45 | 35 |
46 #define NO_SHORTNAMES | 36 #define NO_SHORTNAMES |
47 #define NOT_C_CODE | 37 #define NOT_C_CODE |
48 #include "../src/config.h" | 38 #include "../src/config.h" |
49 | 39 |