summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Noble <nnoble@blizzard.com>2009-06-02 11:09:14 -0700
committerNicolas Noble <nnoble@blizzard.com>2009-06-02 11:09:14 -0700
commit26f478ab722e1d5110cabac71704cb5c3e285c0e (patch)
tree104964ca2813cd44d6929fc7ea2ab2e9217ccf5b
parentd2003726de81dfb729b64195878f4aedcd305b84 (diff)
parentfcddd7a1c0310e9fff2004613419bb2d01977681 (diff)
Merge branch 'master' of ssh+git://pixel@git.grumpycoder.net/pub/repo.git/lua-modules-cd-tool
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 170127f..56dfa09 100644
--- a/Makefile
+++ b/Makefile
@@ -65,6 +65,10 @@ ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(WHOLE_SOURCES))))
all: dep modules
+dist: modules
+ mkdir -p ../lua-interface-dist
+ cp $(MODULES_LIST) ../lua-interface-dist
+
modules: $(MODULES_LIST)
dep: $(ALL_DEPS)
@@ -94,3 +98,5 @@ clean:
./luac -o $@ $<
-include $(ALL_DEPS)
+
+.PHONY: clean dist