build: separate subdirs out from targets

That list is needed in multiple places, so it simplifies
things a bit.
cute-signatures
Timo Teräs 2020-01-26 11:51:56 +02:00
parent 0867d629b9
commit cd70e10ad9
2 changed files with 12 additions and 7 deletions

View File

@ -1,7 +1,9 @@
##
# A set of makefile rules loosely based on kbuild.
all: compile
default: compile
all: compile docs
ifndef build
@ -86,6 +88,9 @@ endif
##
# Reset all variables.
ifneq ($(origin subdirs),file)
subdirs :=
endif
ifneq ($(origin targets),file)
targets :=
endif
@ -303,17 +308,17 @@ endif
%/: FORCE
$(Q)$(MAKE) -f Make.rules build=$(build-dir) $(MAKECMDGOALS)
compile: generate $(targets)
compile: generate $(targets) $(subdirs)
@:
docs: $(docs) $(targets)
docs: $(docs) $(subdirs)
@:
install: docs $(targets) FORCE
install: compile docs $(subdirs) FORCE
generate:
clean: $(filter %/,$(targets))
clean: $(subdirs)
ifeq ($(toplevelrun),yes)
$(Q)find . $(RCS_FIND_IGNORE) \
\( -name '*.[oas]' -o -name '.*.cmd' -o -name '.*.d' \) \

View File

@ -19,9 +19,9 @@ DOCDIR := /usr/share/doc/apk
export DESTDIR SBINDIR LIBDIR CONFDIR MANDIR DOCDIR
##
# Top-level rules and targets
# Top-level subdirs
targets := libfetch/ src/ doc/
subdirs := libfetch/ src/ doc/
##
# Include all rules and stuff