summaryrefslogtreecommitdiff
path: root/plugins/repo/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/repo/Makefile.in')
-rw-r--r--plugins/repo/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/repo/Makefile.in b/plugins/repo/Makefile.in
index 8105b75..12fb469 100644
--- a/plugins/repo/Makefile.in
+++ b/plugins/repo/Makefile.in
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
name = repo
-# version 0.7.0
+# version 0.7.1
# Copyright (C) 2009 Luke Shumaker
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -39,13 +39,13 @@ all : $(name)
.SUFFIXES :
# main #############################################################
+mysrcdir = $(srcdir)/plugins/$(name)
+myoutdir = out
+
srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f))
shSrcFiles = $(filter %.sh,$(srcFiles))
-shOutFiles = $(patsubst $(mysrcdir)/%,out/%,$(basename $(shSrcFiles)))
-
-mysrcdir = $(srcdir)/plugins/$(name)
-myoutdor = out
+shOutFiles = $(patsubst $(mysrcdir)/%,$(myoutdir)/%,$(basename $(shSrcFiles)))
$(name) : $(shOutFiles)