view lua/luadyncall/rockspec/Makefile @ 47:44045db8fa5f

PyCObject/PyCapsule not usable as type annotation
author Tassilo Philipp
date Fri, 13 Nov 2020 18:04:05 +0100
parents 0cfcc391201f
children
line wrap: on
line source

NAME		 =luadyncall
VERSION		 =0.1
TOP		 =..
TMPDIR		 =/tmp
DIR		 =$(NAME)-$(VERSION)

.PHONY: all srcpkg srcdir clean 

all: srcpkg

srcpkg: srcdir
	tar -C $(TMPDIR) -czvpf $(TMPDIR)/$(DIR).tar.gz $(DIR)

srcdir:
	mkdir -p $(TMPDIR)/$(DIR)
	cp -R $(TOP) $(TMPDIR)/$(DIR)

clean: 
	rm -Rf $(TMPDIR)/$(DIR) $(TMPDIR)/$(DIR).tar.gz