keymapper (0.5.3-9) keymapper/parse/Makefile

Summary

 keymapper/parse/Makefile |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

    
download this patch

Patch contents

--- keymapper-0.5.3.orig/keymapper/parse/Makefile
+++ keymapper-0.5.3/keymapper/parse/Makefile
@@ -1,8 +1,12 @@
 # Makefile for keymapper stuff
 #
 
-all: ${addsuffix .py, ${basename ${wildcard *.g}, .g}}
+GENPY := ${addsuffix .py, ${basename ${wildcard *.g}, .g}}
+
+all: $(GENPY)
 
 %.py: %.g
 	yapps $<
 
+clean:
+	rm -f $(GENPY)