Files
linux-apfs/scripts/Makefile.asm-generic
T

39 lines
1.1 KiB
Makefile
Raw Normal View History

2011-04-27 22:29:49 +02:00
# include/asm-generic contains a lot of files that are used
# verbatim by several architectures.
#
# This Makefile reads the file arch/$(SRCARCH)/include/asm/Kbuild
# and for each file listed in this file with generic-y creates
# a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
kbuild-file := $(srctree)/arch/$(SRCARCH)/include/$(src)/Kbuild
2011-05-02 18:01:06 +02:00
-include $(kbuild-file)
2011-04-27 22:29:49 +02:00
include scripts/Kbuild.include
# Create output directory if not already present
_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
2016-06-24 23:42:24 +01:00
# Stale wrappers when the corresponding files are removed from generic-y
# need removing.
generated-y := $(generic-y) $(genhdr-y) $(generated-y)
all-files := $(patsubst %, $(obj)/%, $(generated-y))
old-headers := $(wildcard $(obj)/*.h)
unwanted := $(filter-out $(all-files),$(old-headers))
2011-04-27 22:29:49 +02:00
quiet_cmd_wrap = WRAP $@
cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
2016-06-24 23:42:24 +01:00
quiet_cmd_remove = REMOVE $(unwanted)
cmd_remove = rm -f $(unwanted)
all: $(patsubst %, $(obj)/%, $(generic-y)) FORCE
$(if $(unwanted),$(call cmd,remove),)
@:
2011-04-27 22:29:49 +02:00
$(obj)/%.h:
$(call cmd,wrap)
2016-06-24 23:42:24 +01:00
PHONY += FORCE
.PHONY: $(PHONY)
FORCE: ;