-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sam Ravnborg
authored and
Michal Marek
committed
Apr 28, 2011
1 parent
85dabc7
commit 17a8758
Showing
6 changed files
with
82 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 28bc20dccadc610c56e27255aeef2938141a0cd3 | ||
refs/heads/master: d8ecc5cd8e227bc318513b5306ae88a474b8886d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 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/asm/Kbuild | ||
include $(kbuild-file) | ||
|
||
include scripts/Kbuild.include | ||
|
||
# Create output directory if not already present | ||
_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj)) | ||
|
||
quiet_cmd_wrap = WRAP $@ | ||
cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@ | ||
|
||
all: $(patsubst %, $(obj)/%, $(generic-y)) | ||
|
||
$(obj)/%.h: | ||
$(call cmd,wrap) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters