1 # Top part of Makefile for the UCW Libraries
2 # (c) 1997--2008 Martin Mares <mj@ucw.cz>
4 # Set to 1 if you want verbose output
7 # Set to 'y' (or 'n') if you want to auto-confirm (auto-reject) all questions in build/installer
10 # Disable all built-in rules and variables. Speeds up make and simplifies debugging.
13 CFLAGS=$(CLANG) $(COPT) $(CDEBUG) $(CWARNS) $(CEXTRA) -I. -I$(o) -I$(s)
14 LDFLAGS=$(LOPT) $(LEXTRA)
19 CONFIG_SRC_DIR=$(CONFIG_DIR)
22 INSTALL_RUNDIRS=bin lib
26 # Various files whose type does not fit into PROGS
30 DYNAMIC_LIBRARIES=dylib
40 LS=$(DYNAMIC_LIBRARIES)
46 PKG_CONFIG_OPTS=--static
52 # Whenever "make -s" (silent) is run, turn on verbose mode (paradoxical, but gives the right result)
53 ifneq ($(findstring s,$(MAKEFLAGS)),)
57 # Define M (message) and Q (quiet command prefix) macros and also MAKESILENT passed to sub-makes
68 # Clean needs to be a double-colon rule since we want sub-makefiles to be able
69 # to define their own cleanup actions.
71 rm -f `find . -path "*~" -or -name "\#*\#"`
72 rm -f allocs.tmp cscope.out TAGS
75 rm -rf `find obj/ucw -mindepth 1 -maxdepth 1 -not -name autoconf.h`
76 rm -rf `find obj -mindepth 1 -maxdepth 1 -not \( -name config.mk -o -name autoconf.h -o -name ucw \)`
77 rm -rf tests run/{bin,lib,include,.tree-stamp,doc}
80 rm -rf obj run debian-tmp
83 rm -f `find obj -name "*.test"`
86 rm -f $(DOCS) $(patsubst %.html,%.txt,$(DOCS))
88 # Extra default rules (appended to by submakefiles)
91 # Relative symlinks and other pathname manipulation macros
93 space:=$(empty) $(empty)
94 backref=$(subst $(space),/,$(patsubst %,..,$(subst /,$(space),$(1))))
95 tack-on=$(if $(patsubst /%,,$(2)),$(1)/$(2),$(2))
96 symlink=ln -sf $(call tack-on,$(call backref,$(2)),$(1)) $(2)/
97 symlink-alias=ln -sf $(call tack-on,$(call backref,$(2)),$(1)) $(2)/$(3)