summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2001-06-26 02:44:33 +0000
committerDavid Schleef <ds@schleef.org>2001-06-26 02:44:33 +0000
commitee8108569d6e41803ede01a1b2587c64308b29ff (patch)
treea933ffbde7d327d9aa27ab4e10f9c7605e534cd7 /Makefile
parent3e2e5af56a313cf429bbeb9c1055a37b270929d1 (diff)
Change to allow compiling against unconfigured kernels. Creates
symlink to include/asm-${arch} instead of include/asm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7516209e8..1ee680b4a 100644
--- a/Makefile
+++ b/Makefile
@@ -62,7 +62,11 @@ done: $(DO_SHARED)
headers: dummy
@rm -f include/asm include/linux include/bits
- @ln -s $(KERNEL_SOURCE)/include/asm include/asm
+ @if [ $(TARGET_ARCH) = "powerpc" ];then \
+ ln -s $(KERNEL_SOURCE)/include/asm-ppc include/asm; \
+ else \
+ ln -s $(KERNEL_SOURCE)/include/asm-$(TARGET_ARCH) include/asm; \
+ fi;
@if [ ! -f include/asm/unistd.h ] ; then \
echo " "; \
echo "The path '$(KERNEL_SOURCE)/include/asm' doesn't exist."; \