summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2011-05-24 16:26:30 -0400
committerDan Winship <danw@gnome.org>2011-05-24 17:16:23 -0400
commit755d71424512b0395cebdd72c869af11f5c9a1b5 (patch)
tree92b52fbad120ac5b5fa2e7a06d0f58b6b6fdfb2e /bin
parent0921f78660b7b0784ebe2fa586dd54551704699e (diff)
downloadcaribou-755d71424512b0395cebdd72c869af11f5c9a1b5.tar.gz
bin: minor Makefile fixes
Files that are generated from configure should be DISTCLEANFILES, not CLEANFILES. Also, include $(libexec_SCRIPTS) everywhere https://bugzilla.gnome.org/show_bug.cgi?id=651005
Diffstat (limited to 'bin')
-rw-r--r--bin/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/Makefile.am b/bin/Makefile.am
index 88f281d..3ab07a7 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -1,7 +1,7 @@
bin_SCRIPTS = caribou caribou-preferences
libexec_SCRIPTS = antler-keyboard
-CLEANFILES = $(bin_SCRIPTS)
+DISTCLEANFILES = $(bin_SCRIPTS) $(libexec_SCRIPTS)
-all: $(bin_SCRIPTS)
- @chmod +x $(bin_SCRIPTS)
+all: $(bin_SCRIPTS) $(libexec_SCRIPTS)
+ @chmod +x $(bin_SCRIPTS) $(libexec_SCRIPTS)