1 # Top part of Makefile for the UCW Libraries
2 # (c) 1997--2007 Martin Mares <mj@ucw.cz>
4 # Set to 1 if you want verbose output
7 # Disable all built-in rules and variables. Speeds up make and simplifies debugging.
10 CFLAGS=$(CLANG) $(COPT) $(CDEBUG) $(CWARNS) $(CEXTRA) -I. -I$(o) -I$(s)
11 LDFLAGS=$(LOPT) $(LEXTRA)
18 INSTALL_RUNDIRS=bin lib
22 # Various files whose type does not fit into PROGS
39 # Whenever "make -s" (silent) is run, turn on verbose mode (paradoxical, but gives the right result)
40 ifneq ($(findstring s,$(MAKEFLAGS)),)
44 # Define M (message) and Q (quiet command prefix) macros and also MAKESILENT passed to sub-makes
55 # Clean needs to be a double-colon rule since we want sub-makefiles to be able
56 # to define their own cleanup actions.
58 rm -f `find . -path "*~" -or -name "\#*\#" -or -name core`
59 rm -f allocs.tmp cscope.out TAGS
62 rm -rf `find obj -mindepth 1 -maxdepth 1 -not \( -name config.mk -o -name autoconf.h \)`
63 rm -rf tests run/{bin,lib,include,.tree-stamp}
69 rm -f `find obj -name "*.test"`
71 # Extra default rules (appended to by submakefiles)
74 # Relative symlinks and other pathname manipulation macros
76 space:=$(empty) $(empty)
77 backref=$(subst $(space),/,$(patsubst %,..,$(subst /,$(space),$(1))))
78 tack-on=$(if $(patsubst /%,,$(2)),$(1)/$(2),$(2))
79 symlink=ln -sf $(call tack-on,$(call backref,$(2)),$(1)) $(2)/