Add makefile rule to copy headers from kernel tree

main
Kristian Høgsberg 2009-11-17 09:23:52 -05:00
parent 89cc98c0d5
commit a99680384a
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored
View File

@ -13,6 +13,8 @@ bsd-core/*/machine
.deps .deps
.libs .libs
.tmp_versions .tmp_versions
.*check*
.*install*
Makefile Makefile
Makefile.in Makefile.in
aclocal.m4 aclocal.m4

View File

@ -28,3 +28,10 @@ pkgconfigdir = @pkgconfigdir@
pkgconfig_DATA = libdrm.pc pkgconfig_DATA = libdrm.pc
EXTRA_DIST = libdrm.pc.in EXTRA_DIST = libdrm.pc.in
copy-headers :
cp -r $(kernel_source)/usr/include/drm $(top_srcdir)/include
commit-headers : copy-headers
git add include
git commit -am "Copy headers from kernel $$(GIT_DIR=$(kernel_source)/.git git describe)"

View File

@ -188,6 +188,11 @@ fi
AM_CONDITIONAL(HAVE_INTEL, [test "x$INTEL" != "xno"]) AM_CONDITIONAL(HAVE_INTEL, [test "x$INTEL" != "xno"])
AC_ARG_WITH([kernel-source],
[AS_HELP_STRING([--with-kernel-source],
[specify path to linux kernel source])],
[kernel_source="$with_kernel_source"])
AC_SUBST(kernel_source)
AC_SUBST(WARN_CFLAGS) AC_SUBST(WARN_CFLAGS)
AC_OUTPUT([ AC_OUTPUT([