From 284c2fbd2469551672cb1e837f4beb7a613a2039 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Thu, 11 Nov 2010 11:55:17 -0500 Subject: Add cursor theme Originally from Jakub Steiner's dmz-aa theme --- Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..7efce3589 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,5 @@ + +cursordir = $(datadir)/icons/Adwaita/cursors +cursor_DATA = data/* + +EXTRA_DIST = $(cursor_DATA) -- cgit v1.2.1 From 60fe4de5bdb7ce509793fd87e89a266cf108a4bc Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 6 Dec 2010 23:08:40 -0500 Subject: Fix Makefile syntax --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 7efce3589..ba07e815e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ cursordir = $(datadir)/icons/Adwaita/cursors -cursor_DATA = data/* +cursor_DATA = $(wildcard data/*) EXTRA_DIST = $(cursor_DATA) -- cgit v1.2.1 From be0dcbf764b68e4b6c6f045cea9ba9474464fd09 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Wed, 13 Feb 2013 08:50:26 -0500 Subject: Update git.mk --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index ba07e815e..84adf7777 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,3 +3,5 @@ cursordir = $(datadir)/icons/Adwaita/cursors cursor_DATA = $(wildcard data/*) EXTRA_DIST = $(cursor_DATA) + +-include $(top_srcdir)/git.mk -- cgit v1.2.1 From 15ca3117fd3c39874dadb6aee47eebc05ab7001e Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Mon, 25 Mar 2013 12:05:42 -0400 Subject: build: update .gitignore Don't use git.mk, just a static .gitignore. --- Makefile.am | 2 -- 1 file changed, 2 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 84adf7777..ba07e815e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,5 +3,3 @@ cursordir = $(datadir)/icons/Adwaita/cursors cursor_DATA = $(wildcard data/*) EXTRA_DIST = $(cursor_DATA) - --include $(top_srcdir)/git.mk -- cgit v1.2.1 From 434d0d9a479060dec8d882edd37994ca98838e7b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sat, 17 Aug 2013 14:35:38 -0400 Subject: themes: Fix enumeration of cursors with srcdir != builddir --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index ba07e815e..2e24a2842 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ cursordir = $(datadir)/icons/Adwaita/cursors -cursor_DATA = $(wildcard data/*) +cursor_DATA = $(wildcard $(srcdir)/data/*) EXTRA_DIST = $(cursor_DATA) -- cgit v1.2.1