mirror of
https://gitlab.freedesktop.org/xorg/proto/xorgproto.git
synced 2026-01-03 01:10:11 +01:00
Initial build system files for proto module.
This commit is contained in:
parent
58343d9425
commit
03f5e334c5
4 changed files with 36 additions and 0 deletions
9
Makefile.am
Normal file
9
Makefile.am
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
dmxdir = $(includedir)/X11/extensions
|
||||||
|
dmx_HEADERS = \
|
||||||
|
dmxext.h \
|
||||||
|
dmxproto.h
|
||||||
|
|
||||||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
pkgconfig_DATA = dmxext.pc
|
||||||
|
|
||||||
|
EXTRA_DIST = autogen.sh dmxext.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([DMXExt], [7.0], [xorg@lists.freedesktop.org])
|
||||||
|
AM_INIT_AUTOMAKE([foreign dist-bzip2])
|
||||||
|
|
||||||
|
AC_OUTPUT([Makefile
|
||||||
|
dmxext.pc])
|
||||||
9
dmxext.pc.in
Normal file
9
dmxext.pc.in
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
includedir=@includedir@
|
||||||
|
|
||||||
|
Name: DMXExt
|
||||||
|
Description: DMX extension headers
|
||||||
|
Version: @PACKAGE_VERSION@
|
||||||
|
Cflags: -I${includedir}
|
||||||
Loading…
Add table
Reference in a new issue