-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
65 lines (56 loc) · 1.73 KB
/
Makefile
File metadata and controls
65 lines (56 loc) · 1.73 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# ScayNum Makefile
# Advanced OSINT Tool by Scayar
.PHONY: help install run clean update test
# Default target
help:
@echo "🚀 ScayNum - Advanced OSINT Tool"
@echo "=================================="
@echo ""
@echo "Available commands:"
@echo " make install - Install ScayNum and dependencies"
@echo " make run - Run ScayNum"
@echo " make clean - Clean up temporary files"
@echo " make update - Update ScayNum to latest version"
@echo " make test - Test ScayNum installation"
@echo " make help - Show this help message"
@echo ""
@echo "Quick start:"
@echo " make install && make run"
# Install ScayNum
install:
@echo "📦 Installing ScayNum..."
python -m pip install --upgrade pip
pip install -r requirements.txt
@echo "✅ Installation completed!"
# Run ScayNum
run:
@echo "🚀 Starting ScayNum..."
python main.py
# Clean up
clean:
@echo "🧹 Cleaning up..."
find . -type f -name "*.pyc" -delete
find . -type d -name "__pycache__" -delete
find . -type d -name "*.egg-info" -exec rm -rf {} +
@echo "✅ Cleanup completed!"
# Update ScayNum
update:
@echo "🔄 Updating ScayNum..."
git pull origin main
pip install -r requirements.txt
@echo "✅ Update completed!"
# Test installation
test:
@echo "🧪 Testing ScayNum installation..."
python -c "import pyfiglet, colorama, requests, beautifulsoup4; print('✅ All dependencies installed successfully!')"
@echo "✅ Test completed!"
# Install as package
install-package:
@echo "📦 Installing ScayNum as package..."
pip install -e .
@echo "✅ Package installation completed!"
# Uninstall package
uninstall-package:
@echo "🗑️ Uninstalling ScayNum package..."
pip uninstall scaynum -y
@echo "✅ Package uninstallation completed!"