mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-27 06:59:51 -05:00
Fix udev rules install rule.
This commit is contained in:
parent
e68d24c559
commit
32692d2f48
1 changed files with 3 additions and 2 deletions
|
|
@ -2,6 +2,7 @@ CFLAGS = @GCC_CFLAGS@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
|
udev_rules_dir = @sysconfdir@/udev/rules.d
|
||||||
|
|
||||||
libs = libwayland-server.so libwayland.so
|
libs = libwayland-server.so libwayland.so
|
||||||
clients = flower gears screenshot terminal
|
clients = flower gears screenshot terminal
|
||||||
|
|
@ -49,11 +50,11 @@ $(clients) : CFLAGS += @CLIENT_CFLAGS@
|
||||||
$(clients) : LDLIBS += -L. -lwayland @CLIENT_LIBS@ -lrt
|
$(clients) : LDLIBS += -L. -lwayland @CLIENT_LIBS@ -lrt
|
||||||
|
|
||||||
install : $(libs)
|
install : $(libs)
|
||||||
install -d @libdir@ @libdir@/pkgconfig
|
install -d @libdir@ @libdir@/pkgconfig ${udev_rules_dir}
|
||||||
install $(libs) @libdir@
|
install $(libs) @libdir@
|
||||||
install wayland-server.pc wayland.pc @libdir@/pkgconfig
|
install wayland-server.pc wayland.pc @libdir@/pkgconfig
|
||||||
install wayland-client.h @includedir@
|
install wayland-client.h @includedir@
|
||||||
install 70-wayland.rules ${sysconfdir}/udev/rules.d
|
install 70-wayland.rules ${udev_rules_dir}
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
rm -f $(clients) $(compositors) *.o *.so
|
rm -f $(clients) $(compositors) *.o *.so
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue