mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Rearrange moving configurable things up front and add commentary headers
This commit is contained in:
parent
44dcf89071
commit
b9c1850785
121
Makefile.lib
121
Makefile.lib
@ -1,5 +1,23 @@
|
||||
### The build commands and verbosity
|
||||
|
||||
# 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)
|
||||
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__
|
||||
|
||||
#############################################################################
|
||||
# Build recipies
|
||||
|
||||
# If we are verbose, we will show commands prefixed by $(Q) (which acts as
|
||||
# @ in the non-verbose mode), and we will show the "real" cmds instead of
|
||||
# their quiet versions (which are used in the non-verbose mode).
|
||||
@ -14,17 +32,6 @@ else
|
||||
mquiet = quiet_
|
||||
endif
|
||||
|
||||
# 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)
|
||||
END_COLOR = $(shell tput sgr0)
|
||||
endif
|
||||
|
||||
# Show the command (quiet or non-quiet version based on the assignment
|
||||
# just above) and then execute it.
|
||||
ncmd = $(if $($(quiet)cmd_$(1)),echo $($(quiet)cmd_$(1)) &&) $(cmd_$(1))
|
||||
@ -59,24 +66,8 @@ quiet_cmd_installprog = " [$(INSTALL_COLOR)INSTALL$(END_COLOR)] $(RELPATH)
|
||||
cmd_installprog = $(INSTALL_PROGRAM) $(2) $(3)
|
||||
|
||||
|
||||
### Internal build rules
|
||||
|
||||
DEP_FILES_1 = $(foreach src,$(OBJS),.deps/$(src))
|
||||
DEP_FILES = $(DEP_FILES_1:%.o=%.P)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
|
||||
ifdef OBJS
|
||||
-include $(DEP_FILES)
|
||||
endif
|
||||
|
||||
%.o: $(srcdir)%.c
|
||||
$(call mcmd,compile)
|
||||
@-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
|
||||
#############################################################################
|
||||
# Special handling of conditional variables
|
||||
|
||||
ifdef SUBDIRS-yes
|
||||
SUBDIRS += $(SUBDIRS-yes)
|
||||
@ -109,10 +100,30 @@ endif
|
||||
ifdef OBJS-
|
||||
OBJS += $(OBJS-)
|
||||
endif
|
||||
|
||||
endif
|
||||
|
||||
|
||||
#############################################################################
|
||||
# Internal build rules
|
||||
|
||||
DEP_FILES_1 = $(foreach src,$(OBJS),.deps/$(src))
|
||||
DEP_FILES = $(DEP_FILES_1:%.o=%.P)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
|
||||
ifdef OBJS
|
||||
-include $(DEP_FILES)
|
||||
endif
|
||||
|
||||
%.o: $(srcdir)%.c
|
||||
$(call mcmd,compile)
|
||||
@-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
|
||||
|
||||
|
||||
ifdef OBJS
|
||||
$(LIB_O_NAME): $(sort $(OBJS)) $(foreach subdir,$(sort $(filter-out src,$(SUBDIRS))), $(wildcard $(subdir)/$(LIB_O_NAME)))
|
||||
$(call cmd,ld_objs)
|
||||
@ -123,6 +134,10 @@ endif
|
||||
|
||||
CLEAN += $(PROG)
|
||||
|
||||
|
||||
#############################################################################
|
||||
# The main default rules
|
||||
|
||||
all-default: $(LIB_O) $(PROGS) $(MAN1) $(MAN5)
|
||||
|
||||
# Ensure that Makefiles in subdirs are created before we recursive into them
|
||||
@ -142,10 +157,26 @@ ifneq ($(SPARSE),)
|
||||
$(call ncmd,sparse,$(file));)
|
||||
endif
|
||||
|
||||
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
|
||||
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
# Auto-testing infrastructure
|
||||
#
|
||||
|
||||
test-default:
|
||||
|
||||
@ -176,27 +207,9 @@ endif
|
||||
.PHONY: $(TESTS)
|
||||
.NOPARALLEL:
|
||||
|
||||
# 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__
|
||||
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
|
||||
|
||||
# Recursion:
|
||||
#############################################################################
|
||||
# Basic recursion and dependencies setup
|
||||
|
||||
RULES = all install clean cleanall init check test
|
||||
|
||||
@ -219,6 +232,10 @@ endef
|
||||
|
||||
$(foreach rule,$(RULES),$(eval $(call basic_dependency,$(rule))))
|
||||
|
||||
|
||||
#############################################################################
|
||||
# Misc
|
||||
|
||||
# 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:
|
||||
|
Loading…
Reference in New Issue
Block a user