make distribution by default
[rrq/hourglass.git] / Makefile
index b9be89428386c4fd79caaa782b039307a2880bb3..0d5445179a85e7b371435db21e7de5ff53522466 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,16 @@
 MAIN = command.lsp
 LSP = $(filter-out $(MAIN),$(wildcard *.lsp))
+BIN = hourglass hourglass-web
+VERSION = 0.1
+
+dist: $(BIN)
+       tar czf hourglass-$(VERSION).tgz $(BIN)
 
 hourglass: $(MAIN) $(LSP)
        packnl -w $@ $^
 
+hourglass-web:
+       $(MAKE) -C manager && mv manager/$@ $@
+
+clean:
+       rm -f $(BIN)