Coverity: UNUSED: CID 427
[sxemacs] / src / Makefile.am
1 ## SXEmacs Makefile.am
2
3 ## Copyright (C) 2007 Steve Youngs
4
5 ## This file is part of SXEmacs.
6
7 ## SXEmacs is free software: you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation, either version 3 of the License, or
10 ## (at your option) any later version.
11
12 ## SXEmacs is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ## GNU General Public License for more details.
16
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 ## Process this file with automake to produce Makefile.in
21
22 # Help the Developers and yourself. Just use the C locale and settings
23 # for the compilation. They can still be overriden by make LANG=<whatever>
24 # but that is general a not very good idea
25 LANG=C
26 LC_ALL=C
27
28 builddir = @builddir@
29 srcdir = @srcdir@
30 top_builddir = @top_builddir@
31 top_build_prefix = $(top_builddir)/
32 top_srcdir = @top_srcdir@
33 abs_builddir = @abs_builddir@
34 abs_top_builddir = @abs_top_builddir@
35 abs_top_srcdir = @abs_top_srcdir@
36
37 AM_CFLAGS = -Demacs $(OPENSSL_CFLAGS) -DUSE_SXEMACS_CONFIG_H -DXTSTRINGDEFINES
38 AM_CPPFLAGS = -I$(srcdir) -I$(builddir) -I$(top_builddir) $(c_switch_general) $(LTDLINCL)
39 AM_LDFLAGS = $(OPENSSL_LDFLAGS) $(ENT_LDFLAGS) $(LIBLTDL) $(XCCLDFLAGS)
40
41 headerdir = $(includedir)/$(instvarsepdir)
42 sheaderdir = $(headerdir)/s
43 mheaderdir = $(headerdir)/m
44 archlibdir = ${libdir}/${instvardir}/${configuration}
45
46 sxesrcdir = $(sxe_srcdir)/src
47 bldsrcdir = $(builddir)
48 sxelispdir = $(top_srcdir)/lisp
49 bldlispdir = $(top_builddir)/lisp
50 sxelwlibdir = $(top_srcdir)/src/ui/lwlib
51 bldlwlibdir = $(top_builddir)/src/ui/lwlib
52 sxeemoddir = $(top_srcdir)/modules
53 bldemoddir = $(top_builddir)/modules
54 sxelibsrcdir = $(abs_top_srcdir)/lib-src
55 bldlibsrcdir = $(abs_top_builddir)/lib-src
56
57 ETAGS = $(top_builddir)/lib-src/etags
58 TAGS_DEPENDENCIES = $(ETAGS)
59
60 bin_PROGRAMS = sxemacs
61 bin_SCRIPTS = sxemacs.dmp
62 archlib_DATA = config.values DOC
63
64 pdumplibs = 
65 noinst_pdumplibs=
66 nodumplibs=
67 noinst_nodumplibs=
68 pdump_ldadd =
69
70 SUBDIRS=
71 sxe_subdirs=
72
73 pdumplibs        += libsxecore.a 
74 noinst_pdumplibs += libsxecore.a 
75 pdump_ldadd      += $(libsxecore_a_ldflags) 
76
77 # Inverse order of dependency for order dependendant
78 # linkers...
79
80 if NEED_LIBSXEUIX11
81 pdumplibs += $(builddir)/ui/X11/libsxeuiX11.a 
82 # sxe_subdirs += ui
83 endif
84
85 if NEED_LIBSXEUITTY
86 pdumplibs += $(builddir)/ui/TTY/libsxeuiTTY.a 
87 # sxe_subdirs += ui
88 endif
89
90 pdumplibs += $(builddir)/ui/libsxeui.a 
91 # pdump_ldadd +=
92 sxe_subdirs += ui
93
94 pdumplibs += $(builddir)/events/libsxeevents.a 
95 # pdump_ldadd +=
96 sxe_subdirs += events
97
98 # @FIXME@ Should probably be conditional on whether we really have ent
99 # things or not :-)
100 pdumplibs += $(builddir)/ent/libent.a
101 pdump_ldadd += $(ENT_LIBS)
102 sxe_subdirs += ent
103
104 # @FIXME@ Should probably be conditional on whether we really have media
105 # things or not :-)
106 pdumplibs += $(builddir)/media/libmm.a
107 pdump_ldadd += $(MM_LIBS)
108 sxe_subdirs += media
109
110
111 pdumplibs   += $(builddir)/mem/libsxemem.a
112 sxe_subdirs += mem
113 pdump_ldadd += $(libsxemem_a_ldflags)
114
115 if NEED_LIBMULE
116 pdumplibs += $(builddir)/mule/libmule.a
117 # pdump_ldadd +=
118 sxe_subdirs += mule
119 endif
120
121 if NEED_LIBSXEDB
122 pdumplibs += $(builddir)/database/libsxedb.a
123 pdump_ldadd += $(DB_LDFLAGS) $(DB_LIBS)
124 sxe_subdirs += database
125 endif
126
127 nodumplibs += libcruft.a
128 noinst_nodumplibs += libcruft.a
129 if USE_MEMALLOC
130 nodumplibs  += $(builddir)/mem/libmemalloc.a
131 # No need to add
132 # sxe_subdirs += mem
133 # because libsxemem already is there
134 endif
135 if DESCEND_LWLIB
136 nodumplibs += $(builddir)/ui/X11/libsxeX.a
137 endif
138
139 SUBDIRS += $(sxe_subdirs)
140
141 noinst_LIBRARIES = $(noinst_pdumplibs) $(noinst_nodumplibs)
142
143
144 acgen_headers = config.h sxe-paths.h
145 header_HEADERS = $(acgen_headers)               \
146         $(libsxecore_a_headers)                 \
147         emodules-ng.h
148
149 sheader_HEADERS = $(srcdir)/s/*.h
150 mheader_HEADERS = $(srcdir)/m/*.h
151
152 BUILT_SOURCES = sheap-adjust.h dump-id.c
153 EXTRA_DIST = sheap-adjust.h
154 CLEANFILES = core* stage1 stage2 *.stamp $(BUILT_SOURCES) \
155         sxemacs.dmp DOC config.values
156
157 ## binaries
158 sxemacs_SOURCES = $(header_HEADERS)
159 ##$(LOCK_OBJ) $(RTC_patch_objs)
160 EXTRA_sxemacs_SOURCES = lastfile.c profile.c sheap.c pre-crt0.c ecrt0.c
161 sxemacs_CPPFLAGS = $(AM_CPPFLAGS)
162 sxemacs_lddep = $(start_files) $(pdumplibs) $(nodumplibs)
163 if WITH_PDUMP
164 sxemacs_lddep += dump-id.o
165 endif
166 if BUILD_SHEAP
167 sxemacs_lddep += sheap.o
168 endif
169 if HAVE_SETITIMER
170 sxemacs_lddep += profile.o
171 endif
172 sxemacs_lddep += $(statmod_archives)
173 sxemacs_lddep += lastfile.o
174 if DESCEND_LWLIB
175 sxemacs_lddep += $(bldlwlibdir)/libsxelw-Xt.la
176 endif
177 sxemacs_LDFLAGS = $(AM_LDFLAGS) $(start_flags)
178 ## hm, rpath is gross, says njsf
179 #sxemacs_LDFLAGS += -Wl,-rpath,$(abs_top_builddir)/lwlib/$(LT_OBJDIR)
180 sxemacs_LDADD = $(sxemacs_lddep) $(OPENSSL_LIBS)
181 sxemacs_LDADD += $(sxemacs_ldadd)               \
182                  $(ld_switch_all) $(ld_libs_all)\
183                  $(lib_gcc) $(FFI_LIBS)         \
184                  $(LIBLTDL)
185 if WITH_BDWGC
186 sxemacs_CPPFLAGS += $(BDWGC_CPPFLAGS)
187 sxemacs_LDFLAGS += $(BDWGC_LDFLAGS) $(BDWGC_LIBS)
188 endif
189 sxemacs_DEPENDENCIES = $(sxemacs_lddep)
190
191 all_sources =
192
193 ## library stuff
194 libsxecore_a_headers =                                                  \
195         backtrace.h bloom.h broken-sun.h buffer.h dllist.h              \
196         bufslots.h bytecode.h casetab.h category.h                      \
197         chartab.h lisp-disunion.h                                       \
198         lisp.h lrecord.h lstream.h commands.h dict.h dumper.h elhash.h  \
199         dynacat.h extents.h general-slots.h hash.h iso-wide.h           \
200         line-number.h macros.h map.h mem-limits.h ndir.h opaque.h       \
201         process.h                                                       \
202         procimpl.h rangetab.h regex.h semaphore.h seq.h skiplist.h      \
203         specifier.h symeval.h symsinit.h syntax.h syscommctrl.h         \
204         sysdep.h sysdir.h sysfile.h sysproc.h syspwd.h                  \
205         syssignal.h systime.h syswait.h \
206         sxemacs.h
207 libsxecore_a_sources =                                                  \
208         abbrev.c alloc.c bloom.c buffer.c bytecode.c                    \
209         callint.c callproc.c casefiddle.c casetab.c category.c          \
210         chartab.c                                                       \
211         cmdloop.c cmds.c data.c dict.c dired.c dllist.c doc.c doprnt.c  \
212         dynarr.c editfns.c elhash.c emacs.c eval.c dynacat.c            \
213         extents.c fileio.c filemode.c fns.c general.c hash.c indent.c   \
214         intl.c line-number.c lread.c lstream.c macros.c map.c marker.c  \
215         md5.c                                                           \
216         objects.c opaque.c print.c process.c process-unix.c rangetab.c  \
217         regex.c search.c semaphore.c seq.c signal.c skiplist.c          \
218         strftime.c symbols.c syntax.c sysdep.c undo.c
219 libsxecore_a_SOURCES = $(libsxecore_a_headers) $(libsxecore_a_sources)
220 EXTRA_libsxecore_a_SOURCES = dumper.c realpath.c
221 libsxecore_a_CPPFLAGS = $(AM_CPPFLAGS) $(X_CFLAGS)
222 libsxecore_a_LIBADD = $(libsxecore_objs)
223 libsxecore_a_DEPENDENCIES = $(libsxecore_a_LIBADD)
224 all_sources += $(libsxecore_a_sources) $(libsxecore_objs:.o=.c)
225
226 libcruft_a_headers = debug.h effi.h emodules-ng.h openssl.h
227 libcruft_a_sources =
228 libcruft_a_SOURCES = $(libcruft_a_headers) $(libcruft_a_sources)
229 EXTRA_libcruft_a_SOURCES =                                              \
230         alloca.c debug.c effi.c emodules-ng.c                           \
231         filelock.c getloadavg.c inline.c openssl.c strcat.c tests.c
232 libcruft_a_CPPFLAGS =                                                   \
233         $(AM_CPPFLAGS) $(DB_CPPFLAGS) $(FFI_CPPFLAGS) $(X_CFLAGS)
234 libcruft_a_LIBADD = $(libcruft_objs)
235 libcruft_a_DEPENDENCIES = $(libcruft_a_LIBADD)
236 all_sources += $(libcruft_a_sources) $(extra_objs:.o=.c)
237
238
239 ### custom rules
240 SXEMACS = $(bldsrcdir)/sxemacs
241 AALFILE = $(bldlispdir)/auto-autoloads.el
242 AALCFILE = $(bldlispdir)/auto-autoloads.elc
243 BITCH = $(SXEMACS) -batch
244 SXE_DYLD_PATH = $(bldsrcdir):$(bldsrcdir)/$(LT_OBJDIR):$(bldlwlibdir):$(bldlwlibdir)/$(LT_OBJDIR):$(DESTDIR)$(libdir)
245 BATCHENV = DYLD_LIBRARY_PATH=$(SXE_DYLD_PATH):$$DYLD_LIBRARY_PATH:$(DYLD_LIBRARY_PATH) \
246         LD_LIBRARY_PATH=$(SXE_DYLD_PATH):$$LD_LIBRARY_PATH:$(LD_LIBRARY_PATH) \
247         SHLIB_PATH=$(SXE_DYLD_PATH):$$SHLIB_PATH:$(SHLIB_PATH)
248 BITCHENV = $(BATCHENV) \
249         EMACSDEBUGPATHS=1 EMACSPACKAGEPATH= \
250         SOURCE_TREE_ROOT=$(sxe_srcdir) \
251         BUILD_TREE_ROOT=$(sxe_blddir)
252 BATCH = $(BITCHENV) $(BITCH)
253 BATCHGDB = $(BITCHENV) gdb --args $(BITCH)
254 RM = rm -f
255 CROSSMAKE = (cd $$(dirname $@) && $(MAKE) $(AM_MAKEFLAGS) $$(basename $@))
256
257
258 sheap-adjust.h:
259         @echo "Resetting \`src/sheap-adjust.h'."; \
260         (echo "/*       Do not edit this file!" ; \
261          echo "         Automatically generated by SXEmacs */" ; \
262          echo "#define SHEAP_ADJUSTMENT 0") > $@
263
264 dump-id.c: $(bldlibsrcdir)/make-dump-id
265         $(bldlibsrcdir)/make-dump-id
266
267 #$(bldlispdir)/auto-autoloads.el \
268 #$(bldlispdir)/auto-autoloads.elc \
269 #$(bldlispdir)/update-elc.FORCE.stamp \
270 #$(bldlispdir)/update-elc.stamp: $(SXEMACS)
271 #       echo $(CROSSMAKE)
272 #
273 #$(emodblddir)/auto-autoloads.el:
274 #       echo $(CROSSMAKE)
275
276 DOC: $(SXEMACS) $(bldlispdir)/auto.stamp
277         if test -e $(bldlispdir)/auto.stamp; then \
278                 $(BATCH) -nd  -l $(sxelispdir)/make-docfile.el -- \
279                         -o $(bldsrcdir)/DOC -d $(sxesrcdir) \
280                         -i $(sxe_srcdir)/site-packages \
281                         $(sxesrcdir)/*.c \
282                         $(sxesrcdir)/*/*.c \
283                         $(sxesrcdir)/*/*/*.c \
284                         $(sxeemoddir)/*/*.c; \
285                 touch $@; \
286         fi
287
288 ## The `grep -v 'lt_lt_'' here is just a quick and dirty bandaid fix,
289 ## pure and simple.  These are duplicate entries that cause problems
290 ## for #'config-value.  The real fix lies in #'config-values-hash-table
291 ## or maybe in libtool somewhere. --SY.
292 EGREP = @EGREP@
293 config.values: config.h
294         @echo "Building config.values ..."
295         @echo ";;; Do not edit this file!" > $@
296         grep '^[^ ]*='\''.*'\''$$\|^#define ' $(top_builddir)/config.log | \
297                 grep -v 'lt_lt_' | \
298                 sed \
299                 -e 's/='\''\(.*\)'\''/ "\1"/g' \
300                 -e 's/^#define //' \
301                 -e '/^[^ ]*(/d' \
302                 -e 's/^\([^ ]*\) \([^"].*[^"]\)$$/\1 "\2"/' \
303                 -e 's/^\([^ ]*\) "\([0-9]*\)"$$/\1 \2/' \
304                 -e 's/^\(HAVE\|WITH\|ERROR\|LWLIB\)_\([^ ]*\) 1$$/\1_\2 t/' \
305                 -e 's/^\([^ ]*\) *$$/\1 ""/' \
306                 -e 's/\\"/\\\\"/g' \
307                 | sort | uniq >> $@
308 ## this is roughly what we do above
309 ## transform foo=bar to foo "bar"
310 ## remove #define's
311 ## foo <anything but a single digit> -> foo "<anything>"
312 ## foo "1234567890" -> foo 1234567890 (numbers != strings)
313 ## HAVE_foo 1 -> HAVE_foo t (<- t is more useful in elisp)
314 ## `foo ' -> `foo ""'
315
316 ### DUMP PHASE
317 ## another idea would be to create the real dump file upon installation,
318 ## as in use the install-exec-hook and create a new file from the newly
319 ## relinked sxemacs
320 ## one day (when SXE is linked with its own shared libraries) we HAVE to
321 ## go that way but at the moment it's okay the way it is
322 SXEDMP_FILEEXT=dmp
323 SXEMACS_FILENAME=sxemacs
324 SXEDMP_FILENAME=$(SXEMACS_FILENAME).$(SXEDMP_FILEEXT)
325
326 sxemacs.dmp: $(SXEMACS) $(archlib_DATA) $(bldlispdir)/update-elc.stamp
327         if test -e "$(bldlispdir)/update-elc.stamp"; then \
328                 $(BITCHENV) $(SXEMACS) -nd -batch \
329                                 -l $(sxelispdir)/loadup.el --dump $@; \
330                 if test -e "$(LT_OBJDIR)/$(LT_CONVENIENCE_PREFIX)sxemacs"; then \
331                         (cd $(LT_OBJDIR); \
332                         $(LN_S) -f "../$@" "$(LT_CONVENIENCE_PREFIX)$@"); \
333                 fi; \
334                 if test -e "$(LT_OBJDIR)/sxemacs"; then \
335                         (cd $(LT_OBJDIR); \
336                         $(LN_S) -f ../$@ $@); \
337                 fi; \
338                 $(BATCHENV) \
339                 SOURCE_TREE_ROOT= BUILD_TREE_ROOT= \
340                         $(BITCH) -f list-load-path-shadows; \
341         fi
342
343 ## alibi targets
344 $(bldlispdir)/update-elc.stamp $(bldlispdir)/auto.stamp:
345         :
346
347 SXE_SHOW_DUMP = $$($(BITCHENV) $(DESTDIR)$(bindir)/sxemacs -sd)
348
349 ## improve me, make me (the dump file) independent from the binary
350 install-exec-hook:
351         (cd $(DESTDIR)$(bindir) && $(RM) sxemacs.dmp)
352         (cd $(abs_builddir); \
353         $(BITCHENV) $(DESTDIR)$(bindir)/sxemacs -nd -batch \
354                 -l $(sxelispdir)/loadup.el \
355                 --dump $(DESTDIR)$(bindir)/sxemacs-$(old_version)-$(SXE_SHOW_DUMP).dmp)
356         (cd $(DESTDIR)$(bindir) && \
357                 $(LN_S) sxemacs-$(old_version)-$(SXE_SHOW_DUMP).dmp sxemacs.dmp)
358
359
360 ## someone who wants to use this actually needs repeat the fuss above
361 sxemacs.dmp.gdb: $(SXEMACS) $(AALFILE) \
362                 $(bldlispdir)/update-elc.stamp \
363                 $(archlib_DATA) DOC config.values
364         $(RM) $@
365         $(BATCHGDB) -l $(sxelispdir)/loadup.el dump
366         SOURCE_TREE_ROOT= BUILD_TREE_ROOT= \
367                 $(BITCH) -f list-load-path-shadows
368
369
370 #stage1: $(bin_PROGRAMS)
371 #       @touch $@
372 #
373 #stage2: stage1 $(DUMP_TARGET)
374 #       @touch $@
375 #
376 #all: stage1 stage2
377
378
379 # Help the SXEmacs developers get nice post-processed source files
380
381 ## Create preprocessor output (debugging purposes only)
382 .c.i:
383         $(COMPILE) -E -o $@ $<
384
385 ## Create assembler output (debugging purposes only)
386 .c.s:
387         $(COMPILE) -S -c $(cflags) $<