*** empty log message ***
[emacs.git] / lib-src / Makefile.in
blobb3bf673bfa8ba4f685a3fc15213c8df99a0e9af5
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.
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
11 # Avoid trouble on systems where the `SHELL' variable might be
12 # inherited from the environment.
13 SHELL = /bin/sh
15 # Allow the user to specify the install program.
16 INSTALL = install
17 INSTALLFLAGS =
19 # Things that a user might actually run
20 INSTALLABLES = etags ctags emacsclient b2m
22 # Things that Emacs runs internally, or during the build process.
23 UTILITIES= test-distrib wakeup make-docfile digest-doc sorted-doc \
24 movemail cvtmail fakemail yow env emacsserver hexl timer
26 EXECUTABLES= ${UTILITIES} ${INSTALLABLES}
28 # These things are edited by ../configure; don't change anything before
29 # or including the '='; everything after that gets blown away.
30 CC=gcc
31 CFLAGS= -g -O
32 LOADLIBES=
34 all: ../arch-lib
36 ../arch-lib: ${EXECUTABLES}
37 for file in ${EXECUTABLES} ; do \
38 if [ -f $${file} ]; then \
39 if [ -f ../arch-lib/$${file} ]; then \
40 rm ../arch-lib/$${file} ; \
41 fi ; \
42 ln $${file} ../arch-lib ; \
43 fi ; \
44 done
46 # We don't need to install `wakeup' explicitly, because it will be copied when
47 # this whole directory is copied.
48 install: all
49 ${INSTALL} ${INSTALLFLAGS} -c emacsclient ${BINDIR}/emacsclient
50 ${INSTALL} ${INSTALLFLAGS} -c etags ${BINDIR}/etags
51 ${INSTALL} ${INSTALLFLAGS} -c ctags ${BINDIR}/ctags
52 ${INSTALL} ${INSTALLFLAGS} -c b2m ${BINDIR}/b2m
53 ${INSTALL} ${INSTALLFLAGS} -c -m 444 emacs.1 ${MANDIR}/emacs.${MANEXT}
55 install.sysv: all
56 -cp emacsclient ${BINDIR}/emacsclient.new
57 -chmod 755 ${BINDIR}/emacsclient.new
58 -chgrp bin ${BINDIR}/emacsclient.new
59 -chown bin ${BINDIR}/emacsclient.new
60 -mv ${BINDIR}/emacsclient.new ${BINDIR}/emacsclient
61 -cp etags ${BINDIR}/etags.new
62 -chmod 755 ${BINDIR}/etags.new
63 -chgrp bin ${BINDIR}/etags.new
64 -chown bin ${BINDIR}/etags.new
65 -mv ${BINDIR}/etags.new ${BINDIR}/etags
66 -cp ctags ${BINDIR}/ctags.new
67 -chmod 755 ${BINDIR}/ctags.new
68 -chgrp bin ${BINDIR}/ctags.new
69 -chown bin ${BINDIR}/ctags.new
70 -mv ${BINDIR}/ctags.new ${BINDIR}/ctags
71 -cp b2m ${BINDIR}/b2m.new
72 -chmod 755 ${BINDIR}/b2m.new
73 -chgrp bin ${BINDIR}/b2m.new
74 -chown bin ${BINDIR}/b2m.new
75 -mv ${BINDIR}/b2m.new ${BINDIR}/b2m
76 -cp emacs.1 ${MANDIR}/emacs.${MANEXT}.new
77 -chmod 444 ${MANDIR}/emacs.${MANEXT}.new
78 -mv ${MANDIR}/emacs.${MANEXT}.new ${MANDIR}/emacs.${MANEXT}
80 install.xenix:
81 cp etags ctags emacsclient ${BINDIR}
82 chmod 755 ${BINDIR}/etags ${BINDIR}/ctags
83 chmod 755 ${BINDIR}/emacsclient
84 cp b2m ${BINDIR}
85 chmod 755 ${BINDIR}/b2m
86 cp emacs.1 ${MANDIR}/emacs.${MANEXT}
87 chmod 444 ${MANDIR}/emacs.${MANEXT}
90 clean mostlyclean:
91 -rm -f ${EXECUTABLES} core *.o
93 distclean:
94 -rm -f ${EXECUTABLES} *~ \#* ../etc/DOC* core *.o
95 cd ../arch-lib; rm -f ${EXECUTABLES}
97 realclean: distclean
98 rm TAGS aixcc.c
100 # Test the contents of the directory.
101 check:
102 @echo "We don't have any tests for GNU Emacs yet."
104 TAGS: etags
105 etags *.[ch]
107 # This verifies that the non-ASCII characters in the file `testfile'
108 # have not been clobbered by whatever means were used to copy and
109 # distribute Emacs. If they were clobbered, all the .elc files were
110 # clobbered too.
111 test-distrib: test-distrib.c
112 $(CC) -o test-distrib test-distrib.c
113 ./test-distrib
115 GETOPTOBJS = getopt.o getopt1.o
116 GETOPTDEPS = $(GETOPTOBJS) getopt.h
117 getopt.o: getopt.c getopt.h
118 getopt1.o: getopt1.c getopt.h
120 etags: etags.c $(GETOPTDEPS)
121 $(CC) ${CFLAGS} -DETAGS etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags
123 ctags: etags.c $(GETOPTDEPS)
124 $(CC) ${CFLAGS} -DCTAGS etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags
126 wakeup: wakeup.c
127 $(CC) ${CFLAGS} wakeup.c $(LOADLIBES) -o wakeup
129 make-docfile: make-docfile.c
130 $(CC) ${CFLAGS} make-docfile.c $(LOADLIBES) -o make-docfile
132 digest-doc: digest-doc.c
133 $(CC) ${CFLAGS} digest-doc.c $(LOADLIBES) -o digest-doc
135 sorted-doc: sorted-doc.c
136 $(CC) ${CFLAGS} sorted-doc.c $(LOADLIBES) -o sorted-doc
138 b2m: b2m.c
139 $(CC) ${CFLAGS} b2m.c $(LOADLIBES) -o b2m
141 movemail: movemail.c ../src/config.h
142 $(CC) ${CFLAGS} movemail.c $(LOADLIBES) -o movemail
144 cvtmail: cvtmail.c
145 $(CC) ${CFLAGS} cvtmail.c $(LOADLIBES) -o cvtmail
147 fakemail: fakemail.c ../src/config.h
148 $(CC) ${CFLAGS} fakemail.c $(LOADLIBES) -o fakemail
150 yow: yow.c ../src/paths.h
151 $(CC) ${CFLAGS} yow.c $(LOADLIBES) -o yow
153 env: env.c ../src/config.h
154 $(CC) -DEMACS ${CFLAGS} env.c $(LOADLIBES) -o env
156 emacsserver: emacsserver.c ../src/config.h
157 $(CC) ${CFLAGS} emacsserver.c $(LOADLIBES) -o emacsserver
159 emacsclient: emacsclient.c ../src/config.h
160 $(CC) ${CFLAGS} emacsclient.c $(LOADLIBES) -o emacsclient
162 hexl: hexl.c
163 $(CC) ${CFLAGS} hexl.c $(LOADLIBES) -o hexl
165 timer: getdate.o timer.o
166 $(CC) $(CFLAGS) getdate.o timer.o -o timer
168 # These are NOT included in INSTALLABLES or UTILITIES.
169 # See ../src/ymakefile.
170 emacstool: emacstool.c
171 $(CC) emacstool.c -o emacstool ${CFLAGS} \
172 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
174 # For SUN Japanese Language Environment
175 nemacstool: emacstool.c
176 $(CC) -o nemacstool -DJLE ${CFLAGS} emacstool.c \
177 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
179 xvetool: emacstool.c
180 $(CC) -o xvetool -DXVIEW ${CFLAGS} emacstool.c \
181 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
182 $(LOADLIBES)
184 xveterm: emacstool.c
185 $(CC) -o xveterm -DXVIEW -DTTERM ${CFLAGS} emacstool.c \
186 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
187 $(LOADLIBES)
189 aixcc: aixcc.c
190 $(CC) $(CFLAGS) -o aixcc aixcc.c
192 aixcc.c: aixcc.lex
193 lex aixcc.lex
194 mv lex.yy.c aixcc.c