Initial Commit

This commit is contained in:
Niklas080208
2026-02-06 15:53:49 +01:00
parent f87b3e37fd
commit 7aa5725e4d
31 changed files with 1431 additions and 0 deletions

23
Makefile Normal file
View File

@@ -0,0 +1,23 @@
.PHONY: zip clean
zip: "./output/OmniNX Downloader.zip"
"./output/OmniNX Downloader.zip":
@echo "Creating OmniNX Downloader.zip..."
@mkdir -p output
@rm -rf "output/OmniNX Downloader"
@mkdir -p "output/OmniNX Downloader"
@cp package.ini "output/OmniNX Downloader/"
@rsync -av --exclude='RELEASE*.ini' --exclude='*.pyc' --exclude='__pycache__' --exclude='.DS_Store' include/ "output/OmniNX Downloader/include/"
@cd output && zip -r "OmniNX Downloader.zip" "OmniNX Downloader" \
-x "*.pyc" \
-x "__pycache__/*" \
-x ".DS_Store" \
-x "*/.DS_Store"
@rm -rf "output/OmniNX Downloader"
@echo "✓ Created output/OmniNX Downloader.zip"
clean:
@rm -f "output/OmniNX Downloader.zip"
@rm -rf "output/OmniNX Downloader"
@echo "✓ Cleaned up output/OmniNX Downloader.zip"