summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gmail.com>2011-05-14 03:14:56 +0200
committerChristoph Brill <egore911@egore911.de>2011-05-15 21:46:06 +0200
commit39afe69ad7d2258d4043044d1283bd6e311e48da (patch)
tree0ebd3e7a95dbbc86ac8bbddd070d46759f230d2d /test
parent4005df66072ceac175ea71427deb16176262f197 (diff)
build: collapse all Makefile.am files into a single non-recursive one.
With this change, the whole of the build is done non-recursively in the top-level Makefile.am. This reduces the amount of overhead due to recursing into directories only to build one file. Signed-off-by: Diego Elio Pettenò <flameeyes@gmail.com> Signed-off-by: Christoph Brill <egore911@egore911.de>
Diffstat (limited to 'test')
-rw-r--r--test/.gitignore6
-rw-r--r--test/Makefile.am15
2 files changed, 0 insertions, 21 deletions
diff --git a/test/.gitignore b/test/.gitignore
deleted file mode 100644
index d81fece..0000000
--- a/test/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-# Add & Override patterns for xf86-input-synaptics
-#
-# Edit the following section as needed
-# For example, !report.pc overrides *.pc. See 'man gitignore'
-
-eventcomm-test
diff --git a/test/Makefile.am b/test/Makefile.am
deleted file mode 100644
index 5dd8cdb..0000000
--- a/test/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-if ENABLE_UNIT_TESTS
-AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include
-AM_CFLAGS = $(XORG_CFLAGS) $(CWARNFLAGS)
-fake_syms = fake-symbols.c fake-symbols.h
-
-if BUILD_EVENTCOMM
-noinst_PROGRAMS = eventcomm-test
-
-eventcomm_test_SOURCES = eventcomm-test.c\
- $(top_srcdir)/src/eventcomm.c \
- $(fake_syms)
-endif
-
-TESTS = $(noinst_PROGRAMS)
-endif