# HG changeset patch # User Matthew Wild # Date 1451662864 0 # Node ID 0ce6d4a1e2fd071cda2bf5951c5579b4fcfb5e71 # Parent 88bcf9fbdd073c01873ea11f1a625e674276fe95 Makefile: Add 'install' target diff -r 88bcf9fbdd07 -r 0ce6d4a1e2fd Makefile --- a/Makefile Fri Jan 01 15:40:51 2016 +0000 +++ b/Makefile Fri Jan 01 15:41:04 2016 +0000 @@ -8,6 +8,9 @@ verse.lua: $(SOURCE_FILES) ./buildscripts/squish +install: verse.lua + install -t $(LUA_DIR) -m 644 $^ + clean: rm verse.lua @@ -20,4 +23,4 @@ release: $(MISSING_FILES) -.PHONY: all release clean +.PHONY: all release clean install