mirror of
https://gitlab.freedesktop.org/xorg/proto/xorgproto.git
synced 2026-05-07 08:28:06 +02:00
Initial build system files for proto module.
This commit is contained in:
parent
ba45fc53d6
commit
3372bb6c3a
4 changed files with 38 additions and 0 deletions
11
Makefile.am
Normal file
11
Makefile.am
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
xf86dgadir = $(includedir)/X11/extensions
|
||||
xf86dga_HEADERS = \
|
||||
xf86dga1.h \
|
||||
xf86dga1str.h \
|
||||
xf86dga.h \
|
||||
xf86dgastr.h
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = xf86dgaext.pc
|
||||
|
||||
EXTRA_DIST = autogen.sh xf86dgaext.pc.in
|
||||
12
autogen.sh
Executable file
12
autogen.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#! /bin/sh
|
||||
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
ORIGDIR=`pwd`
|
||||
cd $srcdir
|
||||
|
||||
autoreconf -v --install || exit 1
|
||||
cd $ORIGDIR || exit $?
|
||||
|
||||
$srcdir/configure --enable-maintainer-mode "$@"
|
||||
6
configure.ac
Normal file
6
configure.ac
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
AC_PREREQ([2.57])
|
||||
AC_INIT([XF86DGAExt], [7.0], [xorg@lists.freedesktop.org])
|
||||
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
||||
|
||||
AC_OUTPUT([Makefile
|
||||
xf86dgaext.pc])
|
||||
9
xf86dgaext.pc.in
Normal file
9
xf86dgaext.pc.in
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: XF86DGAExt
|
||||
Description: XF86DGA extension headers
|
||||
Version: @PACKAGE_VERSION@
|
||||
Cflags: -I${includedir}
|
||||
Loading…
Add table
Reference in a new issue