forked from freebsd/libdevq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
29 lines (20 loc) · 741 Bytes
/
Makefile.am
File metadata and controls
29 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ACLOCAL_AMFLAGS = -I m4
include_HEADERS = include/libdevq.h
lib_LTLIBRARIES = libdevq.la
libdevq_la_SOURCES = src/freebsd/device.c \
src/freebsd/device_drm.c \
src/freebsd/event_monitor_freebsd.c
libdevq_la_CPPFLAGS = -I$(top_srcdir)/include -DPREFIX="\"$(prefix)\""
if ENABLE_PROGRAMS
bin_PROGRAMS = devq-lsdri devq-evwatch
endif
devq_evwatch_SOURCES = tools/devq_evwatch/devq_evwatch.c
devq_evwatch_CPPFLAGS = -I$(top_srcdir)/include
devq_evwatch_LDADD = libdevq.la
devq_lsdri_SOURCES = tools/lsdri/lsdri.c
devq_lsdri_CPPFLAGS = -I$(top_srcdir)/include
devq_lsdri_LDADD = libdevq.la
pkgconfigdir = $(libdir)/pkgconfig
nodist_pkgconfig_DATA = src/libdevq-1.0.pc
dist_man_MANS= doc/libdevq.3
mandir= $(prefix)/man