2005-09-15 15:03:56 -04:00
|
|
|
### The build commands and verbosity
|
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
# Colorize the build.
|
|
|
|
ifdef MAKE_COLOR
|
|
|
|
INFO_COLOR = $(shell tput setaf 5)
|
|
|
|
CC_COLOR = $(shell tput setaf 6)
|
|
|
|
LD_COLOR = $(shell tput setaf 2)
|
|
|
|
PO_COLOR = $(shell tput setaf 6)
|
|
|
|
LINK_COLOR = $(shell tput bold;tput setaf 4)
|
|
|
|
INSTALL_COLOR = $(shell tput setaf 3)
|
2006-09-03 03:27:21 -04:00
|
|
|
UNINSTALL_COLOR = $(shell tput setaf 1)
|
2006-01-14 03:27:30 -05:00
|
|
|
END_COLOR = $(shell tput sgr0)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# sparse is architecture-neutral, which means that we need to tell it
|
|
|
|
# explicitly what architecture to check for. Fix this up for yours..
|
|
|
|
SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
|
|
|
|
|
2006-01-14 04:28:08 -05:00
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
#############################################################################
|
|
|
|
# Build recipies
|
|
|
|
|
2006-01-14 04:33:38 -05:00
|
|
|
# If we are verbose, we will show the "real" cmds instead of
|
2005-09-15 15:03:56 -04:00
|
|
|
# their quiet versions (which are used in the non-verbose mode).
|
|
|
|
# Inspired by the Linux kernel build system.
|
2008-03-22 03:44:12 -04:00
|
|
|
#
|
|
|
|
# If real cmds are to be shown, then quoteverbose quotes each as
|
|
|
|
# a shell word, so that it can be accurately displayed with echo.
|
|
|
|
# If the quiet versions are to be shown, then they should already
|
|
|
|
# be sufficiently quoted, so quoteverbose does nothing.
|
2005-09-15 15:03:56 -04:00
|
|
|
ifdef V
|
|
|
|
quiet =
|
|
|
|
mquiet = masq_
|
2008-03-22 03:44:12 -04:00
|
|
|
quoteverbose = '$(subst ','\'',$(1))'
|
|
|
|
#'# This line fixes syntax highlighting in Emacs' makefile-mode.
|
2006-07-10 08:27:40 -04:00
|
|
|
Q =
|
2005-09-15 15:03:56 -04:00
|
|
|
else
|
|
|
|
quiet = quiet_
|
|
|
|
mquiet = quiet_
|
2008-03-22 03:44:12 -04:00
|
|
|
quoteverbose = $(1)
|
2006-07-10 08:27:40 -04:00
|
|
|
Q = @
|
2005-09-15 15:03:56 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Show the command (quiet or non-quiet version based on the assignment
|
|
|
|
# just above) and then execute it.
|
2008-03-22 03:44:12 -04:00
|
|
|
#
|
|
|
|
# Because $(cmd_$(1)) and related variables may contain references to $(2),
|
|
|
|
# they must be expanded right here; that cannot be delegated to quoteverbose.
|
|
|
|
ncmd = $(if $($(quiet)cmd_$(1)),echo $(call quoteverbose,$($(quiet)cmd_$(1))) &&) $(cmd_$(1))
|
|
|
|
cmd = @$(if $($(quiet)cmd_$(1)),echo $(call quoteverbose,$($(quiet)cmd_$(1))) &&) $(cmd_$(1))
|
|
|
|
mcmd = @$(if $($(mquiet)cmd_$(1)),echo $(call quoteverbose,$($(mquiet)cmd_$(1))) &&) $(cmd_$(1))
|
|
|
|
ecmd = @$(if $($(mquiet)cmd_$(1)),printf "%-38s " $(call quoteverbose,$($(mquiet)cmd_$(1))) &&) $(cmd_$(1))
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2005-12-15 02:44:15 -05:00
|
|
|
quiet_cmd_compile = ' [$(CC_COLOR)CC$(END_COLOR)] $(RELPATH)$@'
|
2006-01-06 16:08:49 -05:00
|
|
|
masq_cmd_compile = $(COMPILE) -o $(@) -c $< $(2)
|
2020-08-22 09:25:30 -04:00
|
|
|
cmd_compile = $(COMPILE) -o $(@) -MD -MF .deps/$(*F).pp -c $< $(2)
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2022-08-16 11:36:13 -04:00
|
|
|
quiet_cmd_compilecxx = ' [$(CC_COLOR)CXX$(END_COLOR)] $(RELPATH)$@'
|
|
|
|
masq_cmd_compilecxx = $(COMPILE_CXX) -o $(@) -c $< $(2)
|
|
|
|
cmd_compilecxx = $(COMPILE_CXX) -o $(@) -MD -MF .deps/$(*F).pp -c $< $(2)
|
|
|
|
|
|
|
|
|
2005-09-27 15:38:58 -04:00
|
|
|
# Rule to compile a set of .o files into one .o file
|
2005-12-15 02:44:15 -05:00
|
|
|
quiet_cmd_ld_objs = " [$(LD_COLOR)LD$(END_COLOR)] $(RELPATH)$@"
|
2005-10-19 21:39:59 -04:00
|
|
|
cmd_ld_objs = $(LD) -r -o $@ $(filter $(OBJS), $^) \
|
|
|
|
$(foreach subdir,$(sort $(filter-out src,$(SUBDIRS))), \
|
2006-01-12 13:06:50 -05:00
|
|
|
`test -e $(subdir)/$(LIB_O_NAME) && echo $(subdir)/$(LIB_O_NAME)`)
|
2005-10-21 09:58:36 -04:00
|
|
|
|
2005-12-15 02:44:15 -05:00
|
|
|
quiet_cmd_link = ' [$(LINK_COLOR)LINK$(END_COLOR)] $(RELPATH)$@'
|
2022-08-16 11:36:13 -04:00
|
|
|
cmd_link = $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2005-11-24 15:54:49 -05:00
|
|
|
quiet_cmd_sparse = ' [SPARSE] $(RELPATH)$(2)'
|
2006-07-01 07:43:37 -04:00
|
|
|
cmd_sparse = $(SPARSE) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(SPARSE_FLAGS) $(2)
|
2005-11-24 07:24:19 -05:00
|
|
|
|
2005-09-15 15:03:56 -04:00
|
|
|
# Recursive make
|
2005-12-15 02:44:15 -05:00
|
|
|
quiet_cmd_recmake = "[$(INFO_COLOR)MAKE $(3)$(END_COLOR)] $(RELPATH)$(2)"
|
2005-12-20 17:21:08 -05:00
|
|
|
cmd_recmake = $(MAKE) -C $(2) $(3)
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2006-12-17 09:21:36 -05:00
|
|
|
quiet_cmd_installdata = " [$(INSTALL_COLOR)INSTALL$(END_COLOR)] $(RELPATH)$(patsubst $(srcdir)%,%,$(2)) -> $(3)"
|
2005-10-01 08:16:19 -04:00
|
|
|
cmd_installdata = $(INSTALL_DATA) $(2) $(3)
|
|
|
|
|
2005-12-15 02:44:15 -05:00
|
|
|
quiet_cmd_installprog = " [$(INSTALL_COLOR)INSTALL$(END_COLOR)] $(RELPATH)$(2) -> $(3)"
|
2005-10-01 08:16:19 -04:00
|
|
|
cmd_installprog = $(INSTALL_PROGRAM) $(2) $(3)
|
|
|
|
|
2007-02-24 05:15:22 -05:00
|
|
|
# $(INSTALL_DATA) in cmd_installdata doesn't use the directory part of
|
|
|
|
# $(2) when it forms the output file name, so don't use it here either.
|
|
|
|
quiet_cmd_uninstall = " [$(UNINSTALL_COLOR)UNINSTALL$(END_COLOR)] $(3)/$(notdir $(2))"
|
|
|
|
cmd_uninstall = $(RM) $(3)/$(notdir $(2))
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
#############################################################################
|
|
|
|
# Special handling of conditional variables
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2007-08-28 16:55:26 -04:00
|
|
|
SUBDIRS += $(SUBDIRS-yes) $(SUBDIRS-unlessno) $(SUBDIRS-unless)
|
2007-08-28 17:35:22 -04:00
|
|
|
OBJS += $(OBJS-yes) $(OBJS-unlessno) $(OBJS-unless)
|
2005-09-27 16:49:47 -04:00
|
|
|
|
2007-08-28 16:55:26 -04:00
|
|
|
ALTDIRS = $(SUBDIRS-no) $(SUBDIRS-) $(SUBDIRS-unlessyes)
|
|
|
|
ALTOBJS = $(OBJS-no) $(OBJS-) $(OBJS-unlessyes)
|
2005-09-27 16:49:47 -04:00
|
|
|
|
2005-10-22 07:25:28 -04:00
|
|
|
ifneq ($(findstring cleanall,$(MAKECMDGOALS)),)
|
2005-10-25 17:41:26 -04:00
|
|
|
INCLUDE_ALL=1
|
|
|
|
endif
|
|
|
|
|
2005-10-25 18:34:13 -04:00
|
|
|
ifneq ($(findstring init,$(MAKECMDGOALS)),)
|
2005-10-25 17:41:26 -04:00
|
|
|
INCLUDE_ALL=1
|
2006-01-15 12:37:34 -05:00
|
|
|
ifndef SRC
|
|
|
|
SRC = $(shell cd $(top_srcdir) && pwd)
|
|
|
|
endif
|
2005-10-25 17:41:26 -04:00
|
|
|
endif
|
2005-10-22 07:25:28 -04:00
|
|
|
|
2005-10-25 17:41:26 -04:00
|
|
|
ifdef INCLUDE_ALL
|
2006-01-14 04:28:08 -05:00
|
|
|
SUBDIRS += $(ALTDIRS)
|
|
|
|
OBJS += $(ALTOBJS)
|
2006-01-14 03:27:30 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# Internal build rules
|
|
|
|
|
2006-01-16 17:32:27 -05:00
|
|
|
# All files in $(OBJS) and any $(subdir)/lib.o are linked into lib.o.
|
|
|
|
# Sort them to filter out duplicated and get uniform order.
|
2006-01-14 04:28:08 -05:00
|
|
|
LIB_O_DEPS = \
|
|
|
|
$(sort $(filter-out $(LIB_O_NAME),$(OBJS))) \
|
|
|
|
$(foreach subdir,$(sort $(SUBDIRS)),$(wildcard $(subdir)/$(LIB_O_NAME)))
|
|
|
|
|
|
|
|
$(LIB_O_NAME): $(LIB_O_DEPS)
|
|
|
|
$(call cmd,ld_objs)
|
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
DEP_FILES_1 = $(foreach src,$(OBJS),.deps/$(src))
|
|
|
|
DEP_FILES = $(DEP_FILES_1:%.o=%.P)
|
|
|
|
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
2005-10-22 07:25:28 -04:00
|
|
|
|
2006-01-14 08:46:23 -05:00
|
|
|
ifneq ($(strip $(OBJS)),)
|
2006-01-14 03:27:30 -05:00
|
|
|
-include $(DEP_FILES)
|
2006-01-18 19:23:54 -05:00
|
|
|
ALL_OBJS = $(LIB_O_DEPS) $(LIB_O_NAME)
|
2005-10-22 07:25:28 -04:00
|
|
|
endif
|
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
%.o: $(srcdir)%.c
|
|
|
|
$(call mcmd,compile)
|
2006-01-14 13:48:44 -05:00
|
|
|
@-if test -e .deps/$(*F).pp; then \
|
|
|
|
cp .deps/$(*F).pp .deps/$(*F).P; \
|
2006-01-14 03:27:30 -05:00
|
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
|
|
>> .deps/$(*F).P; \
|
2006-01-14 13:48:44 -05:00
|
|
|
rm .deps/$(*F).pp; \
|
|
|
|
fi
|
2006-01-14 03:27:30 -05:00
|
|
|
|
2022-07-31 10:01:26 -04:00
|
|
|
%.obj: $(srcdir)%.cpp
|
2022-08-16 11:36:13 -04:00
|
|
|
$(call mcmd,compilecxx)
|
2022-07-31 10:01:26 -04:00
|
|
|
@-if test -e .deps/$(*F).pp; then \
|
|
|
|
cp .deps/$(*F).pp .deps/$(*F).P; \
|
|
|
|
tr ' ' '\012' < .deps/$(*F).pp \
|
|
|
|
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
|
|
|
>> .deps/$(*F).P; \
|
|
|
|
rm .deps/$(*F).pp; \
|
|
|
|
fi
|
|
|
|
|
2006-07-10 08:27:40 -04:00
|
|
|
CLEAN += $(PROGS) $(OBJS) $(LIB_O_NAME)
|
2005-10-02 17:55:37 -04:00
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# The main default rules
|
|
|
|
|
2006-01-27 23:25:02 -05:00
|
|
|
all-default: $(ALL_OBJS) $(PROGS) $(MAN1) $(MAN5)
|
2005-10-02 17:55:37 -04:00
|
|
|
|
2006-01-03 12:50:26 -05:00
|
|
|
# Ensure that Makefiles in subdirs are created before we recursive into them
|
|
|
|
init-recursive: init-default
|
|
|
|
|
2006-01-27 23:25:02 -05:00
|
|
|
init-default:
|
2005-10-25 18:34:13 -04:00
|
|
|
@$(foreach subdir,$(sort $(SUBDIRS)), \
|
|
|
|
$(MKINSTALLDIRS) $(subdir) >/dev/null; \
|
2006-01-15 12:37:34 -05:00
|
|
|
test -e "$(subdir)/Makefile" \
|
|
|
|
|| echo 'include $(SRC)/$(RELPATH)/$(subdir)/Makefile' > $(subdir)/Makefile;)
|
2005-10-19 21:49:40 -04:00
|
|
|
|
2006-01-14 02:57:42 -05:00
|
|
|
clean-default cleanall-default:
|
2006-07-10 08:27:40 -04:00
|
|
|
$(Q)-test -z "$(CLEAN)" || $(RM) $(CLEAN)
|
2005-10-02 17:55:37 -04:00
|
|
|
|
2005-11-24 07:24:19 -05:00
|
|
|
check-default:
|
|
|
|
ifneq ($(SPARSE),)
|
|
|
|
@$(foreach file, $(wildcard *.c), \
|
|
|
|
$(call ncmd,sparse,$(file));)
|
|
|
|
endif
|
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
install-default: all-default
|
|
|
|
ifdef PROGS
|
|
|
|
@$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
|
|
|
@$(foreach file,$(PROGS), \
|
|
|
|
$(call ncmd,installprog,$(file),$(DESTDIR)$(bindir));)
|
|
|
|
endif
|
|
|
|
ifdef MAN1
|
|
|
|
@$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
|
|
|
|
@$(foreach file,$(MAN1), \
|
|
|
|
$(call ncmd,installdata,$(file),$(DESTDIR)$(mandir)/man1);)
|
|
|
|
endif
|
|
|
|
ifdef MAN5
|
|
|
|
@$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man5
|
|
|
|
@$(foreach file,$(MAN5), \
|
|
|
|
$(call ncmd,installdata,$(file),$(DESTDIR)$(mandir)/man5);)
|
|
|
|
endif
|
|
|
|
|
2006-09-03 03:27:21 -04:00
|
|
|
uninstall-default:
|
|
|
|
ifdef PROGS
|
|
|
|
@$(foreach file,$(PROGS), \
|
|
|
|
$(call ncmd,uninstall,$(file),$(DESTDIR)$(bindir));)
|
|
|
|
endif
|
|
|
|
ifdef MAN1
|
|
|
|
@$(foreach file,$(MAN1), \
|
|
|
|
$(call ncmd,uninstall,$(file),$(DESTDIR)$(mandir)/man1);)
|
|
|
|
endif
|
|
|
|
ifdef MAN5
|
|
|
|
@$(foreach file,$(MAN5), \
|
|
|
|
$(call ncmd,uninstall,$(file),$(DESTDIR)$(mandir)/man5);)
|
|
|
|
endif
|
2006-01-02 18:45:22 -05:00
|
|
|
##############################################################################
|
|
|
|
# Auto-testing infrastructure
|
|
|
|
|
2006-01-02 20:07:51 -05:00
|
|
|
test-default:
|
2006-01-02 18:45:22 -05:00
|
|
|
|
|
|
|
ifdef TEST_PROGS
|
2006-01-06 16:11:45 -05:00
|
|
|
TESTDEPS-$(CONFIG_DEBUG) += $(top_builddir)/src/util/memdebug.o
|
2022-06-05 08:25:25 -04:00
|
|
|
TESTDEPS-$(CONFIG_UTF8) += $(top_builddir)/src/intl/width.o
|
2007-08-28 19:57:01 -04:00
|
|
|
TESTDEPS-unless$(CONFIG_SMALL) += $(top_builddir)/src/util/fastfind.o
|
2007-05-26 08:04:29 -04:00
|
|
|
|
|
|
|
# Add most of the basic utility library to the test dependencies.
|
|
|
|
TESTDEPS += \
|
|
|
|
$(top_builddir)/src/intl/charsets.o \
|
|
|
|
$(top_builddir)/src/osdep/stub.o \
|
|
|
|
$(top_builddir)/src/util/conv.o \
|
|
|
|
$(top_builddir)/src/util/error.o \
|
|
|
|
$(top_builddir)/src/util/file.o \
|
|
|
|
$(top_builddir)/src/util/hash.o \
|
|
|
|
$(top_builddir)/src/util/memory.o \
|
|
|
|
$(top_builddir)/src/util/string.o \
|
|
|
|
$(top_builddir)/src/util/time.o
|
|
|
|
|
2007-08-28 16:55:26 -04:00
|
|
|
TESTDEPS += $(TESTDEPS-yes) $(TESTDEPS-unlessno)
|
2006-01-03 13:04:17 -05:00
|
|
|
|
2006-01-18 20:15:56 -05:00
|
|
|
TEST_LIB=$(top_srcdir)/test/libtest.sh
|
|
|
|
export TEST_LIB
|
|
|
|
|
2006-01-31 13:25:37 -05:00
|
|
|
# This is a very general rule but as long as we don't put test programs in src/
|
|
|
|
# it should work.
|
2006-01-21 02:37:13 -05:00
|
|
|
%: %.o $(TESTDEPS)
|
|
|
|
$(call cmd,link)
|
|
|
|
|
2006-01-17 10:53:15 -05:00
|
|
|
TESTS = $(wildcard $(srcdir)test-*)
|
2006-01-04 08:46:29 -05:00
|
|
|
|
2006-01-31 13:25:37 -05:00
|
|
|
$(TESTS): $(addsuffix .o,$(TEST_PROGS)) $(TEST_PROGS)
|
2008-07-02 19:55:03 -04:00
|
|
|
@-echo "*** $(notdir $@) ***"; \
|
2006-01-03 13:04:17 -05:00
|
|
|
$(call shellquote,$(SHELL)) $@ $(TEST_OPTS)
|
2006-01-02 18:45:22 -05:00
|
|
|
|
2006-01-02 20:07:51 -05:00
|
|
|
test-default: $(TESTS)
|
2006-01-02 18:45:22 -05:00
|
|
|
|
|
|
|
clean-test:
|
|
|
|
@rm -fr trash
|
|
|
|
|
2006-01-03 12:54:51 -05:00
|
|
|
CLEAN += $(TEST_PROGS) $(addsuffix .o,$(TEST_PROGS))
|
2006-01-14 02:57:42 -05:00
|
|
|
clean-default: clean-test
|
2006-01-02 18:45:22 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY: $(TESTS)
|
|
|
|
.NOPARALLEL:
|
|
|
|
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2006-01-14 03:27:30 -05:00
|
|
|
#############################################################################
|
|
|
|
# Basic recursion and dependencies setup
|
2005-09-15 15:03:56 -04:00
|
|
|
|
2006-09-03 03:27:21 -04:00
|
|
|
RULES = all install clean cleanall init check test uninstall
|
2006-01-03 12:50:26 -05:00
|
|
|
|
2006-01-14 06:41:27 -05:00
|
|
|
RULES_LOCAL = $(addsuffix -local,$(RULES))
|
|
|
|
RULES_REC = $(addsuffix -recursive,$(RULES))
|
2006-01-11 21:28:23 -05:00
|
|
|
|
2006-01-14 06:41:27 -05:00
|
|
|
.PHONY: $(RULES) $(RULES_LOCAL) $(RULES_REC) $(addsuffix -default,$(RULES))
|
2005-10-21 09:58:36 -04:00
|
|
|
|
2006-05-21 07:55:22 -04:00
|
|
|
# The -recursive rules descend all subdirs.
|
|
|
|
# If make -k was used and a sub-Make fails, then keep building the
|
|
|
|
# remaining subdirectories, but return an error at the end.
|
2006-01-14 06:41:27 -05:00
|
|
|
$(RULES_REC):
|
2006-05-21 07:55:22 -04:00
|
|
|
ifneq (,$(findstring k,$(MAKEFLAGS)))
|
|
|
|
@suberr=0; \
|
|
|
|
$(foreach subdir,$(sort $(SUBDIRS)), \
|
|
|
|
$(call ncmd,recmake,$(subdir),$(subst -recursive,,$@)) || suberr=1;) \
|
|
|
|
exit $$suberr
|
|
|
|
else
|
2005-10-21 09:58:36 -04:00
|
|
|
@$(foreach subdir,$(sort $(SUBDIRS)), \
|
2006-01-14 06:41:27 -05:00
|
|
|
$(call ncmd,recmake,$(subdir),$(subst -recursive,,$@)) || exit 1;)
|
2006-05-21 07:55:22 -04:00
|
|
|
endif
|
2006-01-14 06:41:27 -05:00
|
|
|
|
|
|
|
# Dummy -local rules
|
|
|
|
$(RULES_LOCAL):
|
|
|
|
|
|
|
|
# Default deps
|
|
|
|
rule_deps = $(1)-recursive $(1)-default $(1)-local
|
|
|
|
all: $(call rule_deps,all)
|
|
|
|
install: $(call rule_deps,install)
|
|
|
|
clean: $(call rule_deps,clean)
|
|
|
|
cleanall: $(call rule_deps,cleanall)
|
|
|
|
init: $(call rule_deps,init)
|
|
|
|
check: $(call rule_deps,check)
|
|
|
|
test: $(call rule_deps,test)
|
2006-09-03 03:27:21 -04:00
|
|
|
uninstall: $(call rule_deps,uninstall)
|
2006-01-14 03:27:30 -05:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# Misc
|
|
|
|
|
2005-10-02 18:09:35 -04:00
|
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
|
|
.NOEXPORT:
|
|
|
|
|
2006-01-02 18:45:22 -05:00
|
|
|
# Shell quote;
|
|
|
|
# Result of this needs to be placed inside ''
|
|
|
|
# XXX: Placed here because Vim cannot highlight things right afterwards
|
|
|
|
shq = $(subst ','\'',$(1))
|
|
|
|
# This has surrounding ''
|
|
|
|
shellquote = '$(call shq,$(1))'
|
|
|
|
|
2005-09-15 15:03:56 -04:00
|
|
|
# vim:syntax=make
|