mirror of
https://github.com/red031000/nitrog3d.git
synced 2025-06-18 13:15:35 -04:00
14 lines
223 B
Makefile
14 lines
223 B
Makefile
.PHONY: all clean
|
|
|
|
all: nitrog3d
|
|
@:
|
|
|
|
nitrog3d:
|
|
mkdir -p io_scene_g3d
|
|
cp __init__.py import_nsbmd.py utils.py g3_commands.py io_scene_g3d
|
|
zip -r nitrog3d.zip io_scene_g3d
|
|
rm -rf io_scene_g3d
|
|
|
|
clean:
|
|
rm -f nitrog3d.zip
|