diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:38:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:38:11 +0000 |
commit | 265809de0590083e8edfee5aefae64c402b3f540 (patch) | |
tree | bbc5a8b83a18fa32afd23c408ff3eabc8ad52edb /test/Makefile.am | |
parent | Initial commit. (diff) | |
download | xserver-xorg-input-libinput-265809de0590083e8edfee5aefae64c402b3f540.tar.xz xserver-xorg-input-libinput-265809de0590083e8edfee5aefae64c402b3f540.zip |
Adding upstream version 1.2.1.upstream/1.2.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..4c9c5f6 --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,16 @@ +AM_CPPFLAGS = $(XORG_CFLAGS) \ + $(CWARNFLAGS) \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src + +tests = test-draglock test-bezier + +noinst_PROGRAMS = $(tests) + +test_draglock_SOURCES = test-draglock.c +test_draglock_LDADD = ../src/libdraglock.la + +test_bezier_SOURCES = test-bezier.c +test_bezier_LDADD = ../src/libbezier.la -lm + +TESTS = $(tests) |