Initial OpenGL commit

This commit is contained in:
Corentin 2021-07-13 01:02:17 +09:00
commit 1ae16b306f
18 changed files with 25863 additions and 0 deletions

13
makefile Normal file
View file

@ -0,0 +1,13 @@
MAKE_PATH="."
UMAKE_PATH="umake"
.PHONY: all clean
all:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py
debug:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py --type debug
clean:
@PYTHONPATH=$(UMAKE_PATH) python $(MAKE_PATH)/make.py --clean