]> git.draconx.ca Git - dxcommon.git/blob - snippet/glconfig.mk
fix-gnulib: Reduce build-time impact of symbol renaming.
[dxcommon.git] / snippet / glconfig.mk
1 # Copyright © 2011-2013, 2019, 2021-2022 Nick Bowler
2 #
3 # Automake fragment to generate a Gnulib config header to rewrite exported
4 # symbols.  This fragment relies on the Gnulib makefile postprocessing done by
5 # fix-gnulib.pl.  Furthermore, the following additions to configure.ac may be
6 # required:
7 #
8 #   * Add AM_PROC_CC_C_O to configure.ac
9 #   * Pass the desired symbol prefix to DX_GLSYM_PREFIX in configure.ac,
10 #     after including the fix-gnulib.pl output.
11 #
12 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
13 # This is free software: you are free to do what the fuck you want to.
14 # There is NO WARRANTY, to the extent permitted by law.
15
16 GLCONFIG = @GLSRC@/glconfig.h
17 GLCAT    = cat /dev/null
18
19 GLSYM_V   = $(GLSYM_V_@AM_V@)
20 GLSYM_V_  = $(GLSYM_V_@AM_DEFAULT_V@)
21 GLSYM_V_0 = @printf '  %$(DX_ALIGN_V)s %s\n' 'GLSYM   ' $<;
22
23 gnulib_headers += $(GLCONFIG)
24
25 # This suffix rule triggers symbol generation only on demand.  Dependencies are
26 # not tracked directly, so it must remain phony and thus not create the target.
27 .c.glsym:
28         $(GLSYM_V) $(MKDIR_P) $(@D)/.syms
29         $(AM_V_at) depfile=$(@D)/.syms/$(*F).deps \
30                 source=$< object=$(GLCONFIG) $(CCDEPMODE) \
31                 $(depcomp) $(COMPILE) -DNO_GLCONFIG \
32                 -c -o $(@D)/.syms/$(*F).o $<
33         $(AM_V_at) $(SHELL) $(top_builddir)/exported.sh \
34                 $(@D)/.syms/$(*F).o > $(@D)/.syms/$(*F).sym
35 $(gnulib_symfiles): $(gnulib_core_headers)
36
37 clean-local: clean-glconfig
38 clean-glconfig:
39         @for sym in $(libgnu_la_SOURCES) $(EXTRA_libgnu_la_SOURCES); do \
40                 symdir=`expr "$$sym" : '\(.*/\)'`.syms; \
41                 if test -d "$$symdir"; then \
42                         echo "rm -rf $$symdir"; rm -rf "$$symdir"; \
43                 fi; \
44         done
45 .PHONY: clean-glconfig
46
47 # Produce the list of all currently-enabled gnulib object files to assist with
48 # external build helpers.
49 GLCONFIG_OBJECTS = &1
50 glconfig-objects:
51         @:; { \
52           for f in $(gnulib_objects); do echo "$$f"; done; \
53         } >$(GLCONFIG_OBJECTS)
54 .PHONY: glconfig-objects
55
56 # The config header requires compilation of all gnulib object files via the
57 # .glsym rule above.  However, it cannot depend on those build products
58 # directly because they are phony, and would make this header never up-to-date.
59 #
60 # Thus, we use a recursive make call to regenerate the header, which avoids
61 # the need to list prerequisites.
62 #
63 # Since GNU make does not appear to allow the target of a suffix rule to be
64 # marked .PHONY, we also delete the .glsym files here just in case they were
65 # created for some reason (e.g., make -t).
66 $(GLCONFIG): $(gnulib_core_headers)
67         -$(AM_V_at) rm -f $(gnulib_symfiles)
68         $(AM_V_at) $(MAKE) $(AM_MAKEFLAGS) glconfig-gen
69         $(AM_V_GEN) mv -f $@.tmp $@
70 CLEANFILES += $(GLCONFIG)
71
72 # The glconfig-gen target is intended only for use in recursive make
73 # invocations.
74 glconfig-gen: $(gnulib_symfiles)
75         $(AM_V_at) depfiles=; symfiles=; \
76         for sym in $(gnulib_symfiles); do \
77                 symdir=`expr "$$sym" : '\(.*/\)'`; \
78                 symfile=`expr "$$sym" : '.*/\(.*\)' || printf '%s\n' "$$sym"`; \
79                 symbase=$$symdir.syms/`expr "$$symfile" : '\(.*\)\..*'`; \
80                 test -f "$$symbase.deps" && \
81                         depfiles="$$depfiles $$symbase.deps"; \
82                 symfiles="$$symfiles $$symbase.sym"; \
83         done; \
84                 $(GLCAT) $$depfiles > @GLSRC@/$(DEPDIR)/glconfig.Ph && \
85                 $(GLCAT) $$symfiles | sed 's/.*/#define & $(GLSYM_PREFIX)&/' \
86                         > $(GLCONFIG).tmp
87 .PHONY: glconfig-gen
88
89 @AMDEP_TRUE@@am__include@ @am__quote@@GLSRC@/$(DEPDIR)/glconfig.Ph@am__quote@@dx_include_marker@
90
91 # Automake 1.16 and newer use make rules to generate the dependency stubs.
92 # we must hook those which is kind of annoying to do.  This should be harmless
93 # on previous versions which generate the stubs directly in config.status.
94 @dx_depfiles_target@: @GLSRC@/$(DEPDIR)/glconfig.Ph
95 @GLSRC@/$(DEPDIR)/glconfig.Ph:
96         @$(MKDIR_P) $(@D)
97         @echo '# dummy' >$@-t && mv -f $@-t $@
98 DISTCLEANFILES += @GLSRC@/$(DEPDIR)/glconfig.Ph