summaryrefslogtreecommitdiffstats
path: root/lua/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lua/Makefile')
-rw-r--r--lua/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/lua/Makefile b/lua/Makefile
new file mode 100644
index 0000000..c9e7b43
--- /dev/null
+++ b/lua/Makefile
@@ -0,0 +1,35 @@
+include ../config.mk
+
+LUA_DIST=mvc.lua\
+
+EXTRA_DIST=Makefile
+DISTFILES=$(LUA_DIST) $(EXTRA_DIST)
+
+install_dir=$(DESTDIR)/$(luadir)
+dist_dir=$(DISTDIR)/$(notdir $(PWD))
+
+phony+=all
+all:
+
+phony+=clean
+clean:
+
+phony+=distdir
+distdir: $(DISTFILES)
+ mkdir -p "$(dist_dir)"
+ for i in $(DISTFILES); do\
+ dest=`dirname "$(dist_dir)/$$i"`;\
+ mkdir -p "$$dest";\
+ cp "$$i" "$$dest";\
+ done
+
+phony+=install
+install:
+ mkdir -p $(install_dir)
+ for i in $(LUA_DIST); do\
+ dest=`dirname "$(install_dir)/$$i"`;\
+ mkdir -p "$$dest";\
+ cp "$$i" "$$dest";\
+ done
+
+.PHONY: $(phony)