Add packaging framework
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..98e1ae6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+DIRS = $(filter %/, $(wildcard */))
+
+COMMANDS = distro build dput clean
+
+all:
+	@echo "Available commands:"
+	@\
+for command in ${COMMANDS}; do  \
+echo "  $$command"; \
+done
+
+
+$(COMMANDS): ${DIRS}
+	@\
+for dir in ${DIRS}; do \
+  (cd $$dir && $(MAKE) $@) ; \
+done