Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Makefile 722 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  1. .ONESHELL:
  2. SHELL := /bin/bash
  3. SRC = $(wildcard nbs/*.ipynb)
  4. all: flyvec docs
  5. prep:
  6. nbdev_clean_nbs && nbdev_build_lib && nbdev_build_docs
  7. bump:
  8. nbdev_clean_nbs && nbdev_build_lib && nbdev_build_docs && nbdev_bump_version
  9. flyvec: $(SRC)
  10. nbdev_build_lib
  11. touch flyvec
  12. sync:
  13. nbdev_update_lib
  14. docs_serve: docs
  15. cd docs && bundle exec jekyll serve
  16. docs: $(SRC)
  17. nbdev_build_docs
  18. touch docs
  19. test:
  20. nbdev_test_nbs
  21. release: pypi conda_release
  22. nbdev_bump_version
  23. conda_release:
  24. fastrelease_conda_package
  25. pypi: dist
  26. twine upload --repository pypi dist/*
  27. dist: clean
  28. python setup.py sdist bdist_wheel
  29. training:
  30. cd flyvec/src; bash short_make;
  31. clean:
  32. rm -rf dist
  33. clean_cu:
  34. rm flyvec/src/*.o flyvec/src/*.so
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...