From edf34ef94eb35988833e21bd0a0287405d509434 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 29 Dec 2023 02:51:22 +0100 Subject: Changed style of makefile LMOD dir --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 892082b..337be3c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -LUAVERSION?=5.4 +LUA_VERSION?=5.4 PREFIX?=/usr/local DATADIR=$(PREFIX)/share -LUADIR=$(DATADIR)/lua/$(LUAVERSION) +LUA_LMOD=$(DATADIR)/lua/$(LUA_VERSION) all: @@ -9,9 +9,9 @@ test: busted install: - install -m644 -Dt $(DESTDIR)$(LUADIR) srcinfo.lua + install -m644 -Dt $(DESTDIR)$(LUA_LMOD) srcinfo.lua uninstall: - rm -f $(DESTDIR)$(LUADIR)/srcinfo.lua + rm -f $(DESTDIR)$(LUA_LMOD)/srcinfo.lua .PHONY: all test install uninstall -- cgit v1.1