diff options
Diffstat (limited to 'data/Makefile')
-rw-r--r-- | data/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/data/Makefile b/data/Makefile new file mode 100644 index 0000000..3a44a1b --- /dev/null +++ b/data/Makefile @@ -0,0 +1,21 @@ +include ../config.mk + +cursor_images = \ + bottom_left_corner.png \ + bottom_right_corner.png \ + bottom_side.png \ + grabbing.png \ + left_ptr.png \ + left_side.png \ + right_side.png \ + top_left_corner.png \ + top_right_corner.png \ + top_side.png \ + xterm.png + + +all : + +install : + install -d $(datadir)/wayland + install $(cursor_images) $(datadir)/wayland |