Mercurial > emacs
annotate lib-src/Makefile.in @ 5221:50e623c19fff
(Bogus-Bureaucratic-Cruft): Changed to `X-Bogus-Bureaucratic-Cruft'.
Change comments to indicate that any header starting with `X-' is
not supposed to be implemented. This gives us the same "out" as
that RFC822 does.
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Wed, 22 Dec 1993 12:06:54 +0000 |
parents | ffe0be5b64fa |
children | 55ef6a6dc4c2 |
rev | line source |
---|---|
616 | 1 # DIST: This is the distribution Makefile for Emacs. configure can |
2 # DIST: make most of the changes to this file you might want, so try | |
3 # DIST: that first. | |
4 | |
5 # add -DUSG for SysV movemail and timer | |
6 # For Xenix, add the following for movemail: | |
7 # LOADLIBES= -lx | |
8 # For Mips, the following is needed for who knows what. | |
9 # LOADLIBES = -lmld /usr/bsd43/usr/lib/libc.a | |
10 | |
11 # Avoid trouble on systems where the `SHELL' variable might be | |
12 # inherited from the environment. | |
13 SHELL = /bin/sh | |
14 | |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
15 # ==================== Things `configure' will edit ==================== |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
16 |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
17 CC=@CC@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
18 CFLAGS=@CFLAGS@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
19 ALLOCA=@ALLOCA@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
20 C_SWITCH_SYSTEM=@c_switch_system@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
21 LOADLIBES=@libsrc_libs@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
22 YACC=@YACC@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
23 version=@version@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
24 configname=@configuration@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
25 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
26 # ==================== Where To Install Things ==================== |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
27 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
28 # The default location for installation. Everything is placed in |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
29 # subdirectories of this directory. The default values for many of |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
30 # the variables below are expressed in terms of this one, so you may |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
31 # not need to change them. This is set with the --prefix option to |
4808
87a507860be7
Fixed typos or brainos of whoever though `@' was the comment char.
Roland McGrath <roland@gnu.org>
parents:
4802
diff
changeset
|
32 # `../configure'. |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
33 prefix=@prefix@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
34 |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
35 # Like `prefix', but used for architecture-specific files. This is |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
36 # set with the --exec-prefix option to `../configure'. |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
37 exec_prefix=@exec_prefix@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
38 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
39 # Where to install Emacs and other binaries that people will want to |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
40 # run directly (like etags). This is set with the --bindir option |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
41 # to `../configure'. |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
42 bindir=@bindir@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
43 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
44 # Where to install and expect executable files to be run by Emacs |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
45 # rather than directly by users, and other architecture-dependent |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
46 # data. ${archlibdir} is usually below this. This is set with the |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
47 # --libdir option to `../configure'. |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
48 libdir=@libdir@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
49 |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
50 # Where to find the source code. This is set by the configure |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
51 # script's `--srcdir' option. However, the value of ${srcdir} in |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
52 # this makefile is not identical to what was specified with --srcdir, |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
53 # since the variable here has `/lib-src' added at the end. |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
54 srcdir=@srcdir@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
55 VPATH=@srcdir@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
56 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
57 # ==================== Emacs-specific directories ==================== |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
58 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
59 # These variables hold the values Emacs will actually use. They are |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
60 # based on the values of the standard Make variables above. |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
61 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
62 # Where to put executables to be run by Emacs rather than the user. |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
63 # This path usually includes the Emacs version and configuration name, |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
64 # so that multiple configurations for multiple versions of Emacs may |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
65 # be installed at once. This can be set with the --archlibdir option |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
66 # to `../configure'. |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
67 archlibdir=@archlibdir@ |
2262
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
68 |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
69 # ==================== Utility Programs for the Build ==================== |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
70 |
4808
87a507860be7
Fixed typos or brainos of whoever though `@' was the comment char.
Roland McGrath <roland@gnu.org>
parents:
4802
diff
changeset
|
71 # ../configure figures out the correct values for these. |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
72 INSTALL = @INSTALL@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
73 INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
74 INSTALL_DATA = @INSTALL_DATA@ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
75 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
76 # ============================= Targets ============================== |
616 | 77 |
1112 | 78 # Things that a user might actually run, which should be installed in bindir. |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
79 INSTALLABLES = etags ctags emacsclient b2m |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
80 INSTALLABLE_SCRIPTS = rcs-checkin |
616 | 81 |
1112 | 82 # Things that Emacs runs internally, or during the build process, |
83 # which should not be installed in bindir. | |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
84 UTILITIES= test-distrib make-path wakeup make-docfile digest-doc sorted-doc \ |
1112 | 85 movemail cvtmail fakemail yow env emacsserver hexl timer |
616 | 86 |
1112 | 87 # Like UTILITIES, but they're not system-dependent, and should not be |
88 # deleted by the distclean target. | |
89 SCRIPTS= rcs2log vcdiff | |
90 | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
91 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} |
616 | 92 |
2262
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
93 SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
94 makedoc.com *.[chy] rcs2log vcdiff |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
95 |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
96 ### We need to #define emacs to get the right versions of some files. |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
97 ### Some other files - those shared with other GNU utilities - need |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
98 ### HAVE_CONFIG_H #defined before they know they can take advantage of |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
99 ### the information in ../src/config.h. |
3190
05268cd6e571
(ALL_CFLAGS): Add -I../src
Richard M. Stallman <rms@gnu.org>
parents:
3188
diff
changeset
|
100 ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ |
4688
7df128f592e3
(ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
Roland McGrath <roland@gnu.org>
parents:
4593
diff
changeset
|
101 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CFLAGS} |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
102 CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ |
4688
7df128f592e3
(ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
Roland McGrath <roland@gnu.org>
parents:
4593
diff
changeset
|
103 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
104 # This is the default compilation command. |
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
105 # But we should never rely on it, because some make version |
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
106 # failed to find it for getopt.o. Using an explicit command made it work. |
2811
6cc1bf599a56
The GNU coding standards specify that CFLAGS should be left for
Jim Blandy <jimb@redhat.com>
parents:
2810
diff
changeset
|
107 .c.o: |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
108 ${CC} -c ${CPP_CFLAGS} $< |
616 | 109 |
3428
4a9182ac9d17
(all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
Richard M. Stallman <rms@gnu.org>
parents:
3311
diff
changeset
|
110 all: ${UTILITIES} ${INSTALLABLES} |
616 | 111 |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
112 ### Install the internal utilities. Until they are installed, we can |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
113 ### just run them directly from lib-src. |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
114 ${archlibdir}: all |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
115 @echo |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
116 @echo "Installing utilities run internally by Emacs." |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
117 ./make-path ${archlibdir} |
3311
5d06123fc1df
* Makefile.in: (${archlibdir}): Use `(cd foo && pwd)` instead of
Jim Blandy <jimb@redhat.com>
parents:
3237
diff
changeset
|
118 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ |
4802
5a3769d017ca
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
Brian Fox <bfox@gnu.org>
parents:
4800
diff
changeset
|
119 for file in ${UTILITIES}; do \ |
5a3769d017ca
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
Brian Fox <bfox@gnu.org>
parents:
4800
diff
changeset
|
120 $(INSTALL_PROGRAM) $$file ${archlibdir}/$$file ; \ |
5a3769d017ca
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
Brian Fox <bfox@gnu.org>
parents:
4800
diff
changeset
|
121 chmod 755 ${archlibdir}/$$file ; \ |
5a3769d017ca
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
Brian Fox <bfox@gnu.org>
parents:
4800
diff
changeset
|
122 done ; \ |
5a3769d017ca
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not from current
Brian Fox <bfox@gnu.org>
parents:
4800
diff
changeset
|
123 for file in ${SCRIPTS}; do \ |
4816
2a5085c32935
(${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not cwd.
Roland McGrath <roland@gnu.org>
parents:
4808
diff
changeset
|
124 $(INSTALL_PROGRAM) ${srcdir}/$$file ${archlibdir}/$$file ; \ |
4800
d41c009d6ac6
(INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let configure figure out the
Brian Fox <bfox@gnu.org>
parents:
4694
diff
changeset
|
125 chmod 755 ${archlibdir}/$$file ; \ |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
126 done ; \ |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
127 fi |
616 | 128 |
129 # We don't need to install `wakeup' explicitly, because it will be copied when | |
130 # this whole directory is copied. | |
4162
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
131 # We use .n, not .new as before, to avoid exceeding the 14-character limit. |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
132 install: ${archlibdir} |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
133 @echo |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
134 @echo "Installing utilities for users to run." |
3188
b901b5e04fbb
(install): Get the scripts from ${srcdir}, unlike the executables.
Richard M. Stallman <rms@gnu.org>
parents:
3160
diff
changeset
|
135 for file in ${INSTALLABLES} ; do \ |
4162
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
136 cp $${file} ${bindir}/$${file}.n ; \ |
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
137 chmod 755 ${bindir}/$${file}.n ; \ |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
138 done |
3188
b901b5e04fbb
(install): Get the scripts from ${srcdir}, unlike the executables.
Richard M. Stallman <rms@gnu.org>
parents:
3160
diff
changeset
|
139 for file in ${INSTALLABLE_SCRIPTS} ; do \ |
4162
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
140 cp ${srcdir}/$${file} ${bindir}/$${file}.n ; \ |
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
141 chmod 755 ${bindir}/$${file}.n ; \ |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
142 done |
3159
f877f11c8f20
* Makefile.in (install): Do install the programs listed in
Jim Blandy <jimb@redhat.com>
parents:
3093
diff
changeset
|
143 -for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS} ; do \ |
3093
84fdb06c337d
(install): Don't handle INSTALLABLE_SCRIPTS
Richard M. Stallman <rms@gnu.org>
parents:
3020
diff
changeset
|
144 rm -f ${bindir}/$${file} ; \ |
4162
1d00db08fcac
(install): Use .n, not .new, for temporary filenames.
Richard M. Stallman <rms@gnu.org>
parents:
3876
diff
changeset
|
145 mv ${bindir}/$${file}.n ${bindir}/$${file} ; \ |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
146 done |
616 | 147 |
3781
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
148 uninstall: |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
149 (cd ${bindir}; \ |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
150 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}) |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
151 (cd ${archlibdir}; \ |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
152 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
153 |
5190
ffe0be5b64fa
(mostlyclean): Make it distinct from clean.
Richard M. Stallman <rms@gnu.org>
parents:
5160
diff
changeset
|
154 mostlyclean: |
ffe0be5b64fa
(mostlyclean): Make it distinct from clean.
Richard M. Stallman <rms@gnu.org>
parents:
5160
diff
changeset
|
155 -rm -f core *.o |
ffe0be5b64fa
(mostlyclean): Make it distinct from clean.
Richard M. Stallman <rms@gnu.org>
parents:
5160
diff
changeset
|
156 |
ffe0be5b64fa
(mostlyclean): Make it distinct from clean.
Richard M. Stallman <rms@gnu.org>
parents:
5160
diff
changeset
|
157 clean: mostlyclean |
ffe0be5b64fa
(mostlyclean): Make it distinct from clean.
Richard M. Stallman <rms@gnu.org>
parents:
5160
diff
changeset
|
158 -rm -f ${INSTALLABLES} ${UTILITIES} |
616 | 159 |
3781
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
160 distclean: clean |
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
161 -rm -f ../etc/DOC* *.tab.c *.tab.h aixcc.c TAGS |
616 | 162 |
163 realclean: distclean | |
3781
6c05414356bc
Bring mumbleclean targets into conformance with GNU coding standards.
Jim Blandy <jimb@redhat.com>
parents:
3715
diff
changeset
|
164 true |
1675
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
165 |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
166 extraclean: realclean |
2d6fee9f818d
* Makefile.in (exec_prefix): New variable.
Jim Blandy <jimb@redhat.com>
parents:
1659
diff
changeset
|
167 -rm -f *~ \#* |
616 | 168 |
2262
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
169 unlock: |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
170 chmod u+w $(SOURCES) |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
171 |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
172 relock: |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
173 chmod u-w $(SOURCES) |
29579cd51981
Added unlock and relock.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1675
diff
changeset
|
174 |
616 | 175 # Test the contents of the directory. |
176 check: | |
177 @echo "We don't have any tests for GNU Emacs yet." | |
178 | |
179 TAGS: etags | |
180 etags *.[ch] | |
181 | |
182 # This verifies that the non-ASCII characters in the file `testfile' | |
183 # have not been clobbered by whatever means were used to copy and | |
184 # distribute Emacs. If they were clobbered, all the .elc files were | |
185 # clobbered too. | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
186 test-distrib: ${srcdir}/test-distrib.c |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
187 $(CC) -o test-distrib ${srcdir}/test-distrib.c |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
188 ./test-distrib ${srcdir}/testfile |
616 | 189 |
2811
6cc1bf599a56
The GNU coding standards specify that CFLAGS should be left for
Jim Blandy <jimb@redhat.com>
parents:
2810
diff
changeset
|
190 GETOPTOBJS = getopt.o getopt1.o $(ALLOCA) |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
191 GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h |
3160
ce5dcfc00c34
* Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
Jim Blandy <jimb@redhat.com>
parents:
3159
diff
changeset
|
192 getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
193 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c |
3160
ce5dcfc00c34
* Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
Jim Blandy <jimb@redhat.com>
parents:
3159
diff
changeset
|
194 getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h |
3792
d0b5038d2959
* Makefile.in: Remember, spaces are not tabs.
Jim Blandy <jimb@redhat.com>
parents:
3781
diff
changeset
|
195 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c |
616 | 196 |
4198
4b43be9f5671
(etags): Depend on ../src/config.h.
Richard M. Stallman <rms@gnu.org>
parents:
4162
diff
changeset
|
197 etags: ${srcdir}/etags.c $(GETOPTDEPS) ../src/config.h |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
198 $(CC) ${CPP_CFLAGS} -DETAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags |
616 | 199 |
3876
3bd157da2222
* Makefile.in (ctags): Depend on etags, so that parallel makes
Jim Blandy <jimb@redhat.com>
parents:
3792
diff
changeset
|
200 # We depend on etags to assure that parallel makes don't write two |
3bd157da2222
* Makefile.in (ctags): Depend on etags, so that parallel makes
Jim Blandy <jimb@redhat.com>
parents:
3792
diff
changeset
|
201 # etags.o files on top of each other. |
3bd157da2222
* Makefile.in (ctags): Depend on etags, so that parallel makes
Jim Blandy <jimb@redhat.com>
parents:
3792
diff
changeset
|
202 ctags: ${srcdir}/etags.c $(GETOPTDEPS) etags |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
203 $(CC) ${CPP_CFLAGS} -DCTAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags |
616 | 204 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
205 wakeup: ${srcdir}/wakeup.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
206 $(CC) ${CPP_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup |
616 | 207 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
208 make-docfile: ${srcdir}/make-docfile.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
209 $(CC) ${CPP_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile |
616 | 210 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
211 digest-doc: ${srcdir}/digest-doc.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
212 $(CC) ${CPP_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc |
616 | 213 |
3020
c0f75cf9ae35
* Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
Jim Blandy <jimb@redhat.com>
parents:
3018
diff
changeset
|
214 sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA} |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
215 $(CC) ${CPP_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc |
616 | 216 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
217 b2m: ${srcdir}/b2m.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
218 $(CC) ${CPP_CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m |
616 | 219 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
220 movemail: ${srcdir}/movemail.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
221 $(CC) ${CPP_CFLAGS} ${srcdir}/movemail.c $(LOADLIBES) -o movemail |
616 | 222 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
223 cvtmail: ${srcdir}/cvtmail.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
224 $(CC) ${CPP_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail |
616 | 225 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
226 fakemail: ${srcdir}/fakemail.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
227 $(CC) ${CPP_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail |
616 | 228 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
229 yow: ${srcdir}/yow.c ../src/paths.h |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
230 $(CC) ${CPP_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow |
616 | 231 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
232 env: ${srcdir}/env.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
233 $(CC) -DEMACS ${CPP_CFLAGS} ${srcdir}/env.c $(LOADLIBES) -o env |
616 | 234 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
235 emacsserver: ${srcdir}/emacsserver.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
236 $(CC) ${CPP_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
237 |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
238 emacsclient: ${srcdir}/emacsclient.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
239 $(CC) ${CPP_CFLAGS} ${srcdir}/emacsclient.c $(LOADLIBES) -o emacsclient |
616 | 240 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
241 hexl: ${srcdir}/hexl.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
242 $(CC) ${CPP_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl |
616 | 243 |
3018
f1d4c6a5976a
* timer.c (xmalloc): Include definition for this, to placate the C
Jim Blandy <jimb@redhat.com>
parents:
3009
diff
changeset
|
244 TIMEROBJS=getdate.o timer.o $(ALLOCA) |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
245 getdate.o: ${srcdir}/getdate.y ../src/config.h |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
246 ${YACC} ${YFLAGS} ${srcdir}/getdate.y |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
247 $(CC) $(CPP_CFLAGS) -c y.tab.c |
1573
884891e455cf
* Makefile.in (getdate.o): Added explicit target for this, so we
Jim Blandy <jimb@redhat.com>
parents:
1282
diff
changeset
|
248 mv y.tab.o getdate.o |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
249 timer.o: ${srcdir}/timer.c ../src/config.h |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
250 $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c |
3018
f1d4c6a5976a
* timer.c (xmalloc): Include definition for this, to placate the C
Jim Blandy <jimb@redhat.com>
parents:
3009
diff
changeset
|
251 timer: ${TIMEROBJS} |
4694
3b32fb537ba5
(b2m, movemail, fakemail, env, emacsserver, emacsclient, getdate.o,
Roland McGrath <roland@gnu.org>
parents:
4688
diff
changeset
|
252 $(CC) $(ALL_CFLAGS) ${TIMEROBJS} $(LOADLIBES) -o timer |
616 | 253 |
4593
efead3ca0cd4
(make-path): Dep on config.h.
Richard M. Stallman <rms@gnu.org>
parents:
4198
diff
changeset
|
254 make-path: ${srcdir}/make-path.c ../src/config.h |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
255 $(CC) $(CPP_CFLAGS) ${srcdir}/make-path.c -o make-path |
1659
59aca09e60f8
* Makefile.in (make-path): New target.
Jim Blandy <jimb@redhat.com>
parents:
1573
diff
changeset
|
256 |
616 | 257 # These are NOT included in INSTALLABLES or UTILITIES. |
258 # See ../src/ymakefile. | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
259 emacstool: ${srcdir}/emacstool.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
260 $(CC) ${srcdir}/emacstool.c -o emacstool ${CPP_CFLAGS} \ |
616 | 261 -lsuntool -lsunwindow -lpixrect $(LOADLIBES) |
262 | |
263 # For SUN Japanese Language Environment | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
264 nemacstool: ${srcdir}/emacstool.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
265 $(CC) -o nemacstool -DJLE ${CPP_CFLAGS} ${srcdir}/emacstool.c \ |
616 | 266 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES) |
267 | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
268 xvetool: ${srcdir}/emacstool.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
269 $(CC) -o xvetool -DXVIEW ${CPP_CFLAGS} ${srcdir}/emacstool.c \ |
616 | 270 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \ |
271 $(LOADLIBES) | |
272 | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
273 xveterm: ${srcdir}/emacstool.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
274 $(CC) -o xveterm -DXVIEW -DTTERM ${CPP_CFLAGS} ${srcdir}/emacstool.c \ |
616 | 275 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \ |
276 $(LOADLIBES) | |
277 | |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
278 aixcc: ${srcdir}/aixcc.c |
3715
b33ee3d1d18d
(CPP_CFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3582
diff
changeset
|
279 $(CC) $(CPP_CFLAGS) -o aixcc ${srcdir}/aixcc.c |
616 | 280 |
2810
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
281 aixcc.c: ${srcdir}/aixcc.lex |
c73cb6a77a61
Install patches from David J. Mackenzie to make the srcdir option
Jim Blandy <jimb@redhat.com>
parents:
2501
diff
changeset
|
282 lex ${srcdir}/aixcc.lex |
616 | 283 mv lex.yy.c aixcc.c |