summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Makefile.am4
-rw-r--r--scripts/Makefile.am2
-rw-r--r--tests/Makefile.am9
3 files changed, 13 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 4612cd53..6afe084e 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -8,6 +8,9 @@ libintel_tools_la_SOURCES = \
intel_mmio.c \
intel_pci.c \
intel_reg.h \
+ i915_3d.h \
+ i915_reg.h \
+ i830_reg.h \
intel_reg_map.c \
instdone.c \
instdone.h \
@@ -22,5 +25,6 @@ libintel_tools_la_SOURCES += \
AM_CFLAGS += $(DRM_CFLAGS)
endif
+
noinst_LTLIBRARIES = libintel_tools.la
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 8a1daca7..e4c26c44 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -1,3 +1,5 @@
noinst_SCRIPTS = \
throttle.py\
$(NULL)
+
+EXTRA_DIST = $(noinst_SCRIPTS)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 27ee014f..b9663690 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -56,9 +56,13 @@ TESTS_progs = \
gem_unref_active_buffers \
$(NULL)
+TESTS_scripts = \
+ debugfs_reader \
+ $(NULL)
+
TESTS = $(TESTS_progs) \
- debugfs_reader \
- $(NULL)
+ $(TESTS_scripts) \
+ $(NULL)
HANG = \
gem_bad_batch \
@@ -67,6 +71,7 @@ HANG = \
$(NULL)
EXTRA_PROGRAMS = $(TESTS_progs) $(HANG)
+EXTRA_DIST = $(TESTS_scripts)
CLEANFILES = $(EXTRA_PROGRAMS)
AM_CFLAGS = $(DRM_CFLAGS) $(WARN_CFLAGS) \