xenocara/driver/xf86-video-radeonhd/utils/conntest/Makefile.am
matthieu 279e764019 Update to xf86-video-radeonhd 1.3.0
Tested by killi@ on a HD3200.
2009-11-24 16:57:34 +00:00

45 lines
1.2 KiB
Makefile

BUILT_SOURCES =
CLEANFILES =
include $(top_srcdir)/RadeonHD.am
EXTRA_DIST = README Imakefile
EXTRA_PROGRAMS = rhd_conntest rhd_dump
if XSERVER_LIBPCIACCESS
noinst_PROGRAMS = rhd_conntest rhd_dump
endif
if HAVE_PCI_PCI_H
if HAVE_ZLIB
noinst_PROGRAMS = rhd_conntest rhd_dump
endif
endif
all-local:
@if test "x$(noinst_PROGRAMS)" = "x"; then \
echo "WARNING: Cannot build the rhd_conntest program due to missing dependencies."; \
echo " *IF* you want to build rhd_conntest, install development packages of"; \
echo " both pciutils and zlib/libz and re-run the configure (or autogen) script."; \
fi
# Including config.h requires xorg-config.h, so we need the XORG_CFLAGS here
AM_CFLAGS = @XORG_CFLAGS@ @WARN_CFLAGS@ @PCIUTILS_CFLAGS@
AM_CPPFLAGS = -I$(top_srcdir)/src/AtomBios/includes
rhd_conntest_SOURCES = rhd_conntest.c
nodist_rhd_conntest_SOURCES = git_version.h
if XSERVER_LIBPCIACCESS
rhd_conntest_LDADD = @PCIACCESS_LIBS@
else
rhd_conntest_LDADD = @PCIUTILS_LIBS@
endif
rhd_dump_SOURCES = rhd_dump.c
nodist_rhd_dump_SOURCES = git_version.h
if XSERVER_LIBPCIACCESS
rhd_dump_LDADD = @PCIACCESS_LIBS@
else
rhd_dump_LDADD = @PCIUTILS_LIBS@
endif