iconv: Bail out of the loop when an illegal sequence of bytes occurs.
[elinks/elinks-j605.git] / Makefile.lib
blob364768d04545b71d101c263860c9f42e5ff1dff6
1 ### The build commands and verbosity
3 # Colorize the build.
4 ifdef MAKE_COLOR
5         INFO_COLOR    = $(shell tput setaf 5)
6         CC_COLOR      = $(shell tput setaf 6)
7         LD_COLOR      = $(shell tput setaf 2)
8         PO_COLOR      = $(shell tput setaf 6)
9         LINK_COLOR    = $(shell tput bold;tput setaf 4)
10         INSTALL_COLOR = $(shell tput setaf 3)
11         UNINSTALL_COLOR = $(shell tput setaf 1)
12         END_COLOR     = $(shell tput sgr0)
13 endif
15 # sparse is architecture-neutral, which means that we need to tell it
16 # explicitly what architecture to check for. Fix this up for yours..
17 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
20 #############################################################################
21 # Build recipies
23 # If we are verbose, we will show the "real" cmds instead of
24 # their quiet versions (which are used in the non-verbose mode).
25 # Inspired by the Linux kernel build system.
27 # If real cmds are to be shown, then quoteverbose quotes each as
28 # a shell word, so that it can be accurately displayed with echo.
29 # If the quiet versions are to be shown, then they should already
30 # be sufficiently quoted, so quoteverbose does nothing.
31 ifdef V
32         quiet =
33         mquiet = masq_
34         quoteverbose = '$(subst ','\'',$(1))'
35         #'# This line fixes syntax highlighting in Emacs' makefile-mode.
36         Q =
37 else
38         quiet = quiet_
39         mquiet = quiet_
40         quoteverbose = $(1)
41         Q = @
42 endif
44 # Show the command (quiet or non-quiet version based on the assignment
45 # just above) and then execute it.
47 # Because $(cmd_$(1)) and related variables may contain references to $(2),
48 # they must be expanded right here; that cannot be delegated to quoteverbose.
49 ncmd = $(if $($(quiet)cmd_$(1)),echo $(call quoteverbose,$($(quiet)cmd_$(1))) &&) $(cmd_$(1))
50 cmd = @$(if $($(quiet)cmd_$(1)),echo $(call quoteverbose,$($(quiet)cmd_$(1))) &&) $(cmd_$(1))
51 mcmd = @$(if $($(mquiet)cmd_$(1)),echo $(call quoteverbose,$($(mquiet)cmd_$(1))) &&) $(cmd_$(1))
52 ecmd = @$(if $($(mquiet)cmd_$(1)),printf "%-38s " $(call quoteverbose,$($(mquiet)cmd_$(1))) &&) $(cmd_$(1))
54 quiet_cmd_compile = '      [$(CC_COLOR)CC$(END_COLOR)]   $(RELPATH)$@'
55  masq_cmd_compile = $(COMPILE) -o $(@) -c $< $(2)
56       cmd_compile = $(COMPILE) -o $(@) -Wp,-MD,.deps/$(*F).pp -c $< $(2)
58 # Rule to compile a set of .o files into one .o file
59 quiet_cmd_ld_objs = "      [$(LD_COLOR)LD$(END_COLOR)]   $(RELPATH)$@"
60       cmd_ld_objs = $(LD) -r -o $@ $(filter $(OBJS), $^) \
61                     $(foreach subdir,$(sort $(filter-out src,$(SUBDIRS))), \
62                             `test -e $(subdir)/$(LIB_O_NAME) && echo $(subdir)/$(LIB_O_NAME)`)
64    quiet_cmd_link = '    [$(LINK_COLOR)LINK$(END_COLOR)]   $(RELPATH)$@'
65          cmd_link = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
67  quiet_cmd_sparse = '    [SPARSE]   $(RELPATH)$(2)'
68        cmd_sparse = $(SPARSE) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(SPARSE_FLAGS) $(2)
70 # Recursive make
71 quiet_cmd_recmake = "[$(INFO_COLOR)MAKE $(3)$(END_COLOR)]   $(RELPATH)$(2)"
72       cmd_recmake = $(MAKE) -C $(2) $(3)
74 quiet_cmd_installdata = "     [$(INSTALL_COLOR)INSTALL$(END_COLOR)]   $(RELPATH)$(patsubst $(srcdir)%,%,$(2)) -> $(3)"
75       cmd_installdata = $(INSTALL_DATA) $(2) $(3)
77 quiet_cmd_installprog = "     [$(INSTALL_COLOR)INSTALL$(END_COLOR)]   $(RELPATH)$(2) -> $(3)"
78       cmd_installprog = $(INSTALL_PROGRAM) $(2) $(3)
80 # $(INSTALL_DATA) in cmd_installdata doesn't use the directory part of
81 # $(2) when it forms the output file name, so don't use it here either.
82 quiet_cmd_uninstall = "     [$(UNINSTALL_COLOR)UNINSTALL$(END_COLOR)]   $(3)/$(notdir $(2))"
83       cmd_uninstall = $(RM) $(3)/$(notdir $(2))
85 #############################################################################
86 # Special handling of conditional variables
88 SUBDIRS += $(SUBDIRS-yes) $(SUBDIRS-unlessno) $(SUBDIRS-unless)
89 OBJS    += $(OBJS-yes) $(OBJS-unlessno) $(OBJS-unless)
91 ALTDIRS  = $(SUBDIRS-no) $(SUBDIRS-) $(SUBDIRS-unlessyes)
92 ALTOBJS  = $(OBJS-no) $(OBJS-) $(OBJS-unlessyes)
94 ifneq ($(findstring cleanall,$(MAKECMDGOALS)),)
95 INCLUDE_ALL=1
96 endif
98 ifneq ($(findstring init,$(MAKECMDGOALS)),)
99 INCLUDE_ALL=1
100 ifndef SRC
101 SRC = $(shell cd $(top_srcdir) && pwd)
102 endif
103 endif
105 ifdef INCLUDE_ALL
106 SUBDIRS += $(ALTDIRS)
107 OBJS    += $(ALTOBJS)
108 endif
111 #############################################################################
112 # Internal build rules
114 # All files in $(OBJS) and any $(subdir)/lib.o are linked into lib.o.
115 # Sort them to filter out duplicated and get uniform order.
116 LIB_O_DEPS = \
117  $(sort $(filter-out $(LIB_O_NAME),$(OBJS))) \
118  $(foreach subdir,$(sort $(SUBDIRS)),$(wildcard $(subdir)/$(LIB_O_NAME)))
120 $(LIB_O_NAME): $(LIB_O_DEPS)
121         $(call cmd,ld_objs)
123 DEP_FILES_1 = $(foreach src,$(OBJS),.deps/$(src))
124 DEP_FILES = $(DEP_FILES_1:%.o=%.P)
125 DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
127 ifneq ($(strip $(OBJS)),)
128 -include $(DEP_FILES)
129 ALL_OBJS = $(LIB_O_DEPS) $(LIB_O_NAME)
130 endif
132 %.o: $(srcdir)%.c
133         $(call mcmd,compile)
134         @-if test -e .deps/$(*F).pp; then \
135                 cp .deps/$(*F).pp .deps/$(*F).P; \
136                 tr ' ' '\012' < .deps/$(*F).pp \
137                         | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
138                         >> .deps/$(*F).P; \
139                 rm .deps/$(*F).pp; \
140         fi
142 CLEAN += $(PROGS) $(OBJS) $(LIB_O_NAME)
145 #############################################################################
146 # The main default rules
148 all-default: $(ALL_OBJS) $(PROGS) $(MAN1) $(MAN5)
150 # Ensure that Makefiles in subdirs are created before we recursive into them
151 init-recursive: init-default
153 init-default:
154         @$(foreach subdir,$(sort $(SUBDIRS)), \
155                 $(MKINSTALLDIRS) $(subdir) >/dev/null; \
156                 test -e "$(subdir)/Makefile" \
157                 || echo 'include $(SRC)/$(RELPATH)/$(subdir)/Makefile' > $(subdir)/Makefile;)
159 clean-default cleanall-default:
160         $(Q)-test -z "$(CLEAN)" || $(RM) $(CLEAN)
162 check-default:
163 ifneq ($(SPARSE),)
164         @$(foreach file, $(wildcard *.c), \
165                 $(call ncmd,sparse,$(file));)
166 endif
168 install-default: all-default
169 ifdef PROGS
170         @$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
171         @$(foreach file,$(PROGS), \
172                 $(call ncmd,installprog,$(file),$(DESTDIR)$(bindir));)
173 endif
174 ifdef MAN1
175         @$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
176         @$(foreach file,$(MAN1), \
177                 $(call ncmd,installdata,$(file),$(DESTDIR)$(mandir)/man1);)
178 endif
179 ifdef MAN5
180         @$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man5
181         @$(foreach file,$(MAN5), \
182                 $(call ncmd,installdata,$(file),$(DESTDIR)$(mandir)/man5);)
183 endif
185 uninstall-default:
186 ifdef PROGS
187         @$(foreach file,$(PROGS), \
188                 $(call ncmd,uninstall,$(file),$(DESTDIR)$(bindir));)
189 endif           
190 ifdef MAN1
191         @$(foreach file,$(MAN1), \
192                 $(call ncmd,uninstall,$(file),$(DESTDIR)$(mandir)/man1);)
193 endif
194 ifdef MAN5
195         @$(foreach file,$(MAN5), \
196                 $(call ncmd,uninstall,$(file),$(DESTDIR)$(mandir)/man5);)
197 endif
198 ##############################################################################
199 # Auto-testing infrastructure
201 test-default:
203 ifdef TEST_PROGS
204 TESTDEPS-$(CONFIG_DEBUG) += $(top_builddir)/src/util/memdebug.o
205 TESTDEPS-unless$(CONFIG_SMALL) += $(top_builddir)/src/util/fastfind.o
207 # Add most of the basic utility library to the test dependencies.
208 TESTDEPS += \
209  $(top_builddir)/src/intl/charsets.o \
210  $(top_builddir)/src/osdep/stub.o \
211  $(top_builddir)/src/util/conv.o \
212  $(top_builddir)/src/util/error.o \
213  $(top_builddir)/src/util/file.o \
214  $(top_builddir)/src/util/hash.o \
215  $(top_builddir)/src/util/memory.o \
216  $(top_builddir)/src/util/string.o \
217  $(top_builddir)/src/util/time.o
219 TESTDEPS += $(TESTDEPS-yes) $(TESTDEPS-unlessno)
221 TEST_LIB=$(top_srcdir)/test/libtest.sh
222 export TEST_LIB
224 # This is a very general rule but as long as we don't put test programs in src/
225 # it should work.
226 %: %.o $(TESTDEPS)
227         $(call cmd,link)
229 TESTS = $(wildcard $(srcdir)test-*)
231 $(TESTS): $(addsuffix .o,$(TEST_PROGS)) $(TEST_PROGS)
232         @-echo "*** $(notdir $@) ***"; \
233         $(call shellquote,$(SHELL)) $@ $(TEST_OPTS)
235 test-default: $(TESTS)
237 clean-test:
238         @rm -fr trash
240 CLEAN += $(TEST_PROGS) $(addsuffix .o,$(TEST_PROGS))
241 clean-default: clean-test
242 endif
244 .PHONY: $(TESTS)
245 .NOPARALLEL:
248 #############################################################################
249 # Basic recursion and dependencies setup
251 RULES    = all install clean cleanall init check test uninstall
253 RULES_LOCAL = $(addsuffix -local,$(RULES))
254 RULES_REC   = $(addsuffix -recursive,$(RULES))
256 .PHONY: $(RULES) $(RULES_LOCAL) $(RULES_REC) $(addsuffix -default,$(RULES))
258 # The -recursive rules descend all subdirs.
259 # If make -k was used and a sub-Make fails, then keep building the
260 # remaining subdirectories, but return an error at the end.
261 $(RULES_REC):
262 ifneq (,$(findstring k,$(MAKEFLAGS)))
263         @suberr=0; \
264         $(foreach subdir,$(sort $(SUBDIRS)), \
265                 $(call ncmd,recmake,$(subdir),$(subst -recursive,,$@)) || suberr=1;) \
266         exit $$suberr
267 else
268         @$(foreach subdir,$(sort $(SUBDIRS)), \
269                 $(call ncmd,recmake,$(subdir),$(subst -recursive,,$@)) || exit 1;)
270 endif
272 # Dummy -local rules
273 $(RULES_LOCAL):
275 # Default deps
276 rule_deps = $(1)-recursive $(1)-default $(1)-local
277 all:      $(call rule_deps,all)
278 install:  $(call rule_deps,install)
279 clean:    $(call rule_deps,clean)
280 cleanall: $(call rule_deps,cleanall)
281 init:     $(call rule_deps,init)
282 check:    $(call rule_deps,check)
283 test:     $(call rule_deps,test)
284 uninstall: $(call rule_deps,uninstall)
286 #############################################################################
287 # Misc
289 # Tell versions [3.59,3.63) of GNU make to not export all variables.
290 # Otherwise a system limit (for SysV at least) may be exceeded.
291 .NOEXPORT:
293 # Shell quote;
294 # Result of this needs to be placed inside ''
295 # XXX: Placed here because Vim cannot highlight things right afterwards
296 shq = $(subst ','\'',$(1))
297 # This has surrounding ''
298 shellquote = '$(call shq,$(1))'
300 # vim:syntax=make