blob: f3146f3c9559bd8c8712579f44830967d75dc7b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
if host_machine.system() == 'linux'
srcs_fbdevhw = 'fbdevhw.c'
else
srcs_fbdevhw = 'fbdevhwstub.c'
endif
shared_module('fbdevhw',
srcs_fbdevhw,
include_directories: [ inc, xorg_inc ],
dependencies: common_dep,
c_args: xorg_c_args,
install: true,
install_dir: module_dir,
link_with: e,
)
install_data('fbdevhw.h', install_dir: xorgsdkdir)
install_man(configure_file(
input: 'man/fbdevhw.man',
output: 'fbdevhw.4',
configuration: manpage_config,
))
|