-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (18 loc) · 767 Bytes
/
Makefile
File metadata and controls
26 lines (18 loc) · 767 Bytes
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
# Shaders Gallery - Development Commands
.PHONY: help install copy-shaders run build clean
help: ## Show this help message
@echo "Shaders Gallery - Available commands:"
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
install: ## Install Flutter dependencies
flutter pub get
copy-shaders: ## Copy shader files to assets directory
dart scripts/copy_shaders.dart
run: copy-shaders ## Run the app (with shader copy)
flutter run
build: copy-shaders ## Build the web app (with shader copy)
flutter build web
clean: ## Clean build artifacts and assets
flutter clean
rm -rf assets/shaders/
rm -rf build/
dev: install copy-shaders run ## Full development setup and run