summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-05-25 02:11:42 +0000
committerPixel <pixel@nobis-crew.org>2009-05-25 02:11:42 +0000
commit0243f1357ce68e2537b327b367b541ae912c246e (patch)
tree172e7f48f290b19a126de026edaeb5a173f1f1ce
parent088199a6451cf694cd0af688975b9e0ee33f6abc (diff)
Adding dist target.
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 76bd364..03778ef 100644
--- a/Makefile
+++ b/Makefile
@@ -172,6 +172,10 @@ ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(WHOLE_SOURCES))))
all: dep modules
+dist: modules
+ mkdir -p ../lua-interface-dist
+ cp *.$(SHARED_EXT) ../lua-interface-dist
+
modules: $(MODULES_LIST)
dep: $(ALL_DEPS)
@@ -234,3 +238,5 @@ clean:
./luac -o $@ $<
-include $(ALL_DEPS)
+
+.PHONY: dist clean