Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.luarocks - github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1eecfeae609ab0688ab1068266ca40acbf34ca1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

include Makefile.setup.inc
include Makefile.install.inc

.PHONY: all install copy_site_config

all:
	@echo This Makefile is used by the LuaRocks rockspec for upgrading itself.

install: install_bins install_luas copy_site_config

copy_site_config:
	luaver="$(LUA_VERSION)" && [ -n "$$luaver" ] || luaver=`$(LUA) -e 'print(_VERSION:sub(5))'`; \
	mkdir -p "$(DESTDIR)$(LUADIR)/luarocks"; \
	cp $(LUAROCKS_PREFIX)/share/lua/$$luaver/luarocks/site_config.lua "$(DESTDIR)$(LUADIR)/luarocks"