first commit
This commit is contained in:
16
Makefile
Normal file
16
Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
.PHONY: all preview render opengl venv
|
||||
all: preview
|
||||
|
||||
preview: main.py
|
||||
manim render main.py -pqm
|
||||
|
||||
render: main.py
|
||||
manim render main.py -qh
|
||||
|
||||
opengl: main.py
|
||||
manim render main.py -p --renderer=opengl
|
||||
|
||||
venv: requirements.txt
|
||||
python -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements
|
Reference in New Issue
Block a user