-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.am
60 lines (50 loc) · 1.59 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign
# Flags to pass to ./configure when calling "make distcheck":
DISTCHECK_CONFIGURE_FLAGS = --without-doxygen
if HAVE_SWIG
MAYBE_PYTHONWRAPPER = swig
endif
SUBDIRS = hidparser src $(MAYBE_PYTHONWRAPPER) test doc
dist_noinst_HEADERS = \
include/hid_assert.h \
include/constants.h \
include/debug.h \
include/hid_helpers.h \
include/compiler.h \
include/os.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = pkgconfig/libhid.pc
dist_noinst_DATA = \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/libhid-dev.docs \
debian/libhid-dev.examples \
debian/libhid-dev.install \
debian/libhid-dev.lintian-overrides \
debian/libhid-dev.linda-overrides \
debian/libhid0.install \
debian/python-hid.docs \
debian/python-hid.examples \
debian/python-hid.install \
debian/rules \
README.licence
EXTRA_DIST = rpm/libhid.spec rpm/libhid.spec.in
clean-local:
rm -f $(wildcard $(PACKAGE)-*.tar.gz)
include Makefile.debian
# COPYRIGHT --
#
# This file is part of libhid, a user-space HID access library.
# libhid is (c) 2003-2007
# Martin F. Krafft <[email protected]>
# Charles Lepple <[email protected]>
# Arnaud Quette <[email protected]> && <[email protected]>
# and distributed under the terms of the GNU General Public License.
# See the file ./COPYING in the source distribution for more information.
#
# THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES
# OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.