diff options
author | Pixel <pixel@nobis-crew.org> | 2009-05-25 02:11:42 +0000 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-05-25 02:11:42 +0000 |
commit | 0243f1357ce68e2537b327b367b541ae912c246e (patch) | |
tree | 172e7f48f290b19a126de026edaeb5a173f1f1ce | |
parent | 088199a6451cf694cd0af688975b9e0ee33f6abc (diff) |
Adding dist target.
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |