aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-02-02 12:29:45 +0100
committerMartin Czygan <martin.czygan@gmail.com>2021-02-02 12:29:45 +0100
commitcc34369216d747d9d6721475d344cd458891e6a0 (patch)
tree00c7305459e90a5a8b045ac32398191172148ddd /Makefile
parent0341d7997d2f955d9bd0915ee3ca0f8fc448577e (diff)
downloadfuzzycat-cc34369216d747d9d6721475d344cd458891e6a0.tar.gz
fuzzycat-cc34369216d747d9d6721475d344cd458891e6a0.zip
try out xar
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c6245fb..eaa1970 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,13 @@ fmt: ## Apply import sorting and yapf source formatting on all files
dist: ## Create source distribution and wheel
python setup.py sdist bdist_wheel
+# https://engineering.fb.com/2018/07/13/data-infrastructure/xars-a-more-efficient-open-source-system-for-self-contained-executables/
+#
+# Required a build from source https://github.com/vasi/squashfuse, to get the squashfuse_ll (low level) executable.
+.PHONY: xar
+xar: ## Create a XAR standalone package (https://github.com/facebookincubator/xar, https://github.com/vasi/squashfuse)
+ python setup.py bdist_xar
+
.PHONY: cov
cov: ## Run coverage report
pytest --cov=fuzzycat fuzzycat/*.py tests/ # --cov-report annotate:cov_annotate --cov-report html