blob: 4d1e6d5e2668ef82dc10ec8a519a806333acbf59 [file] [log] [blame]
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This file is part of libgpiod.
#
# Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
#
AM_CFLAGS = -I$(top_srcdir)/include/ -include $(top_builddir)/config.h
AM_CFLAGS += -Wall -Wextra -g $(KMOD_CFLAGS) $(UDEV_CFLAGS)
AM_LDFLAGS = -pthread
LDADD = $(top_builddir)/lib/libgpiod.la $(KMOD_LIBS) $(UDEV_LIBS)
if WITH_INSTALL_TESTS
bin_PROGRAMS = gpiod-test
else
check_PROGRAMS = gpiod-test
endif
gpiod_test_SOURCES = gpiod-test.c \
gpiod-test.h \
tests-chip.c \
tests-ctxless.c \
tests-event.c \
tests-iter.c \
tests-line.c \
tests-misc.c
if WITH_TOOLS
gpiod_test_SOURCES += tests-gpiodetect.c \
tests-gpiofind.c \
tests-gpioget.c \
tests-gpioinfo.c \
tests-gpiomon.c \
tests-gpioset.c
endif
check: check-am
@echo " ********************************************************"
@echo " * Tests have been built as tests/gpio-test. *"
@echo " * *"
@echo " * They require a recent linux kernel version and the *"
@echo " * gpio-mockup module (must not be built-in). *"
@echo " * *"
@echo " * Run the test executable with superuser privileges or *"
@echo " * make sure /dev/gpiochipX files are readable and *"
@echo " * writable by normal users. *"
@echo " ********************************************************"