diff options
author | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 05:26:23 +0100 |
---|---|---|
committer | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 05:26:23 +0100 |
commit | 8a6d48c0542876eb3acfc0970c0ab7872db08d5f (patch) | |
tree | 496e78bc728317ea779781b92f897d16936ee231 /libdde_linux26/contrib/include/.svn/text-base | |
parent | b4bffcfcdf3ab7a55d664e9aa5907f88da503f38 (diff) |
check in the original version of dde linux26.
Diffstat (limited to 'libdde_linux26/contrib/include/.svn/text-base')
-rw-r--r-- | libdde_linux26/contrib/include/.svn/text-base/Kbuild.svn-base | 10 | ||||
-rw-r--r-- | libdde_linux26/contrib/include/.svn/text-base/Makefile.svn-base | 39 |
2 files changed, 49 insertions, 0 deletions
diff --git a/libdde_linux26/contrib/include/.svn/text-base/Kbuild.svn-base b/libdde_linux26/contrib/include/.svn/text-base/Kbuild.svn-base new file mode 100644 index 00000000..d8c3e3cb --- /dev/null +++ b/libdde_linux26/contrib/include/.svn/text-base/Kbuild.svn-base @@ -0,0 +1,10 @@ +# Top-level Makefile calls into asm-$(ARCH) +# List only non-arch directories below + +header-y += asm-generic/ +header-y += linux/ +header-y += sound/ +header-y += mtd/ +header-y += rdma/ +header-y += video/ +header-y += drm/ diff --git a/libdde_linux26/contrib/include/.svn/text-base/Makefile.svn-base b/libdde_linux26/contrib/include/.svn/text-base/Makefile.svn-base new file mode 100644 index 00000000..009352f5 --- /dev/null +++ b/libdde_linux26/contrib/include/.svn/text-base/Makefile.svn-base @@ -0,0 +1,39 @@ +PKGDIR ?= ../../.. +L4DIR ?= $(PKGDIR)/../.. + +# Force these include files to appear in a special subfolder of dde/ +INSTALL_INC_PREFIX = l4/dde/linux26/linux-headers + +include $(L4DIR)/mk/include.mk + +#SUFFIX_amd64 = x86_64 +#SUFFIX_amd64 = i386 #hack! +#SUFFIX_x86 = x86 +#SUFFIX_arm = arm +# +#SUFFIX_rv = realview +#SUFFIX_int = integrator + +# macro to establish a symlink to a dir if not already existing +#MAKELINK = if [ ! $1 -ef $2 ] ; then ln -$(if $(VERBOSE),v)sf $2 $1 ; fi +# +#ARCH = $(BUILD_ARCH) +#PLAT = rv +# +#all:: +# $(VERBOSE)$(MKDIR) $(INSTALLDIR_LOCAL)/$(ARCH)/$(INSTALL_INC_PREFIX) +# $(VERBOSE)$(call MAKELINK, \ +# $(INSTALLDIR_LOCAL)/$(ARCH)/$(INSTALL_INC_PREFIX)/asm, \ +# $(INSTALLDIR_LOCAL)/$(INSTALL_INC_PREFIX)/asm-$(SUFFIX_$(ARCH))) +#ifeq ($(BUILD_ARCH),arm) +# $(VERBOSE)$(call MAKELINK, \ +# $(INSTALLDIR_LOCAL)/$(ARCH)/$(INSTALL_INC_PREFIX)/asm/arch, \ +# $(INSTALLDIR_LOCAL)/$(INSTALL_INC_PREFIX)/asm-$(SUFFIX_$(ARCH))/arch-$(SUFFIX_$(PLAT))) +#endif +# +#install:: +# $(VERBOSE)$(MKDIR) $(INSTALLDIR)/$(ARCH)/$(INSTALL_INC_PREFIX) +# $(VERBOSE)$(call MAKELINK, \ +# $(INSTALLDIR)/$(ARCH)/$(INSTALL_INC_PREFIX)/asm \ +# $(INSTALLDIR)/$(ARCH)/$(INSTALL_INC_PREFIX)/asm-$(SUFFIX_$(ARCH))) + |