view buildsys/lua/Makefile @ 553:a93bb23fca8c

win build fix
author Tassilo Philipp
date Mon, 20 Jun 2022 15:25:01 +0200
parents 3e629dc19168
children
line wrap: on
line source

DL=wget
all: lua-5.1.4

lua-5.1.4.tar.gz: 
	${DL} http://www.lua.org/ftp/lua-5.1.4.tar.gz
lua-5.1.4: lua-5.1.4.tar.gz
	gunzip -c $? | tar xf -

clean:
	rm -rf lua-5.1.4.tar.gz lua-5.1.4