Skip to content
Snippets Groups Projects
Commit 91d0ded3 authored by Alexandros Kosiaris's avatar Alexandros Kosiaris
Browse files

Added a preliminary draft for a Makefile facilitating various jobs

parent 06b0e450
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
flowspytag = $(shell git describe --abbrev=0)
flowspyver = $(shell git describe --abbrev=0 | egrep -o '([0-9]\.){1,10}[0-9]')
.PHONY: dist distclean
dist:
git archive --format tar --prefix flowspy-$(flowspyver)/ -o flowspy-$(flowspyver).tar $(flowspytag)
gzip -f flowspy-$(flowspyver).tar
distclean:
@rm -f *tar.gz
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment