Summary: minor, provide malldbg multiarg for MALLOC_PERTURB_
[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 = $(EXTRA_BATCHENV) \
246         DYLD_LIBRARY_PATH=$(SXE_DYLD_PATH):$$DYLD_LIBRARY_PATH:$(DYLD_LIBRARY_PATH) \
247         LD_LIBRARY_PATH=$(SXE_DYLD_PATH):$$LD_LIBRARY_PATH:$(LD_LIBRARY_PATH) \
248         SHLIB_PATH=$(SXE_DYLD_PATH):$$SHLIB_PATH:$(SHLIB_PATH)
249 BITCHENV = $(BATCHENV) \
250         EMACSDEBUGPATHS=1 EMACSPACKAGEPATH= \
251         SOURCE_TREE_ROOT=$(sxe_srcdir) \
252         BUILD_TREE_ROOT=$(sxe_blddir)
253 BATCH = $(BITCHENV) $(BITCH)
254 BATCHGDB = $(BITCHENV) gdb --args $(BITCH)
255 RM = rm -f
256 CROSSMAKE = (cd $$(dirname $@) && $(MAKE) $(AM_MAKEFLAGS) $$(basename $@))
257
258
259 sheap-adjust.h:
260         @echo "Resetting \`src/sheap-adjust.h'."; \
261         (echo "/*       Do not edit this file!" ; \
262          echo "         Automatically generated by SXEmacs */" ; \
263          echo "#define SHEAP_ADJUSTMENT 0") > $@
264
265 dump-id.c: $(bldlibsrcdir)/make-dump-id
266         $(bldlibsrcdir)/make-dump-id
267
268 #$(bldlispdir)/auto-autoloads.el \
269 #$(bldlispdir)/auto-autoloads.elc \
270 #$(bldlispdir)/update-elc.FORCE.stamp \
271 #$(bldlispdir)/update-elc.stamp: $(SXEMACS)
272 #       echo $(CROSSMAKE)
273 #
274 #$(emodblddir)/auto-autoloads.el:
275 #       echo $(CROSSMAKE)
276
277 DOC: $(SXEMACS) $(bldlispdir)/auto.stamp
278         if test -e $(bldlispdir)/auto.stamp; then \
279                 $(BATCH) -nd  -l $(sxelispdir)/make-docfile.el -- \
280                         -o $(bldsrcdir)/DOC -d $(sxesrcdir) \
281                         -i $(sxe_srcdir)/site-packages \
282                         $(sxesrcdir)/*.c \
283                         $(sxesrcdir)/*/*.c \
284                         $(sxesrcdir)/*/*/*.c \
285                         $(sxeemoddir)/*/*.c; \
286                 touch $@; \
287         fi
288
289 ## The `grep -v 'lt_lt_'' here is just a quick and dirty bandaid fix,
290 ## pure and simple.  These are duplicate entries that cause problems
291 ## for #'config-value.  The real fix lies in #'config-values-hash-table
292 ## or maybe in libtool somewhere. --SY.
293 EGREP = @EGREP@
294 config.values: config.h
295         @echo "Building config.values ..."
296         @echo ";;; Do not edit this file!" > $@
297         grep '^[^ ]*='\''.*'\''$$\|^#define ' $(top_builddir)/config.log | \
298                 grep -v 'lt_lt_' | \
299                 sed \
300                 -e 's/='\''\(.*\)'\''/ "\1"/g' \
301                 -e 's/^#define //' \
302                 -e '/^[^ ]*(/d' \
303                 -e 's/^\([^ ]*\) \([^"].*[^"]\)$$/\1 "\2"/' \
304                 -e 's/^\([^ ]*\) "\([0-9]*\)"$$/\1 \2/' \
305                 -e 's/^\(HAVE\|WITH\|ERROR\|LWLIB\)_\([^ ]*\) 1$$/\1_\2 t/' \
306                 -e 's/^\([^ ]*\) *$$/\1 ""/' \
307                 -e 's/\\"/\\\\"/g' \
308                 | sort | uniq >> $@
309 ## this is roughly what we do above
310 ## transform foo=bar to foo "bar"
311 ## remove #define's
312 ## foo <anything but a single digit> -> foo "<anything>"
313 ## foo "1234567890" -> foo 1234567890 (numbers != strings)
314 ## HAVE_foo 1 -> HAVE_foo t (<- t is more useful in elisp)
315 ## `foo ' -> `foo ""'
316
317 ### DUMP PHASE
318 ## another idea would be to create the real dump file upon installation,
319 ## as in use the install-exec-hook and create a new file from the newly
320 ## relinked sxemacs
321 ## one day (when SXE is linked with its own shared libraries) we HAVE to
322 ## go that way but at the moment it's okay the way it is
323 SXEDMP_FILEEXT=dmp
324 SXEMACS_FILENAME=sxemacs
325 SXEDMP_FILENAME=$(SXEMACS_FILENAME).$(SXEDMP_FILEEXT)
326
327 sxemacs.dmp: $(SXEMACS) $(archlib_DATA) $(bldlispdir)/update-elc.stamp
328         if test -e "$(bldlispdir)/update-elc.stamp"; then \
329                 $(BITCHENV) $(SXEMACS) -nd -batch \
330                                 -l $(sxelispdir)/loadup.el --dump $@; \
331                 if test -e "$(LT_OBJDIR)/$(LT_CONVENIENCE_PREFIX)sxemacs"; then \
332                         (cd $(LT_OBJDIR); \
333                         $(LN_S) -f "../$@" "$(LT_CONVENIENCE_PREFIX)$@"); \
334                 fi; \
335                 if test -e "$(LT_OBJDIR)/sxemacs"; then \
336                         (cd $(LT_OBJDIR); \
337                         $(LN_S) -f ../$@ $@); \
338                 fi; \
339                 $(BATCHENV) \
340                 SOURCE_TREE_ROOT= BUILD_TREE_ROOT= \
341                         $(BITCH) -f list-load-path-shadows; \
342         fi
343
344 ## alibi targets
345 $(bldlispdir)/update-elc.stamp $(bldlispdir)/auto.stamp:
346         :
347
348 SXE_SHOW_DUMP = $$($(BITCHENV) $(DESTDIR)$(bindir)/sxemacs -sd)
349
350 ## improve me, make me (the dump file) independent from the binary
351 install-exec-hook:
352         (cd $(DESTDIR)$(bindir) && $(RM) sxemacs.dmp)
353         (cd $(abs_builddir); \
354         $(BITCHENV) $(DESTDIR)$(bindir)/sxemacs -nd -batch \
355                 -l $(sxelispdir)/loadup.el \
356                 --dump $(DESTDIR)$(bindir)/sxemacs-$(old_version)-$(SXE_SHOW_DUMP).dmp)
357         (cd $(DESTDIR)$(bindir) && \
358                 $(LN_S) sxemacs-$(old_version)-$(SXE_SHOW_DUMP).dmp sxemacs.dmp)
359
360
361 ## someone who wants to use this actually needs repeat the fuss above
362 sxemacs.dmp.gdb: $(SXEMACS) $(AALFILE) \
363                 $(bldlispdir)/update-elc.stamp \
364                 $(archlib_DATA) DOC config.values
365         $(RM) $@
366         $(BATCHGDB) -l $(sxelispdir)/loadup.el dump
367         SOURCE_TREE_ROOT= BUILD_TREE_ROOT= \
368                 $(BITCH) -f list-load-path-shadows
369
370
371 #stage1: $(bin_PROGRAMS)
372 #       @touch $@
373 #
374 #stage2: stage1 $(DUMP_TARGET)
375 #       @touch $@
376 #
377 #all: stage1 stage2
378
379
380 # Help the SXEmacs developers get nice post-processed source files
381
382 ## Create preprocessor output (debugging purposes only)
383 .c.i:
384         $(COMPILE) -E -o $@ $<
385
386 ## Create assembler output (debugging purposes only)
387 .c.s:
388         $(COMPILE) -S -c $(cflags) $<