net: fs_enet: Use net_device_stats from struct net_device
[linux-2.6/btrfs-unstable.git] / scripts / Makefile.asm-generic
blobe4d017d5381949243337b78c56284bb52a43c610
1 # include/asm-generic contains a lot of files that are used
2 # verbatim by several architectures.
4 # This Makefile reads the file arch/$(SRCARCH)/include/asm/Kbuild
5 # and for each file listed in this file with generic-y creates
6 # a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
8 kbuild-file := $(srctree)/arch/$(SRCARCH)/include/$(src)/Kbuild
9 -include $(kbuild-file)
11 include scripts/Kbuild.include
13 # Create output directory if not already present
14 _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
16 # Stale wrappers when the corresponding files are removed from generic-y
17 # need removing.
18 generated-y   := $(generic-y) $(genhdr-y) $(generated-y)
19 all-files     := $(patsubst %, $(obj)/%, $(generated-y))
20 old-headers   := $(wildcard $(obj)/*.h)
21 unwanted      := $(filter-out $(all-files),$(old-headers))
23 quiet_cmd_wrap = WRAP    $@
24 cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
26 quiet_cmd_remove = REMOVE  $(unwanted)
27 cmd_remove = rm -f $(unwanted)
29 all: $(patsubst %, $(obj)/%, $(generic-y)) FORCE
30         $(if $(unwanted),$(call cmd,remove),)
31         @:
33 $(obj)/%.h:
34         $(call cmd,wrap)
36 PHONY += FORCE
37 .PHONY: $(PHONY)
38 FORCE: ;