Files
steamcache2/Makefile
Justin Harms bd123bc63a
All checks were successful
Release Tag / release (push) Successful in 9s
Refactor module naming and update references to steamcache2
- Changed module name from `s1d3sw1ped/SteamCache2` to `s1d3sw1ped/steamcache2` for consistency.
- Updated all import paths and references throughout the codebase to reflect the new module name.
- Adjusted README and Makefile to use the updated module name, ensuring clarity in usage instructions.
2025-09-21 23:10:21 -05:00

21 lines
778 B
Makefile

run: build-snapshot-single ## Run the application
@dist/default_windows_amd64_v1/steamcache2.exe
run-debug: build-snapshot-single ## Run the application with debug logging
@dist/default_windows_amd64_v1/steamcache2.exe --log-level debug
test: deps ## Run all tests
@go test -v ./...
deps: ## Download dependencies
@go mod tidy
build-snapshot-single: deps test ## Build a snapshot of the application for the current platform
@goreleaser build --single-target --snapshot --clean
help: ## Show this help message
@echo steamcache2 Makefile
@echo Available targets:
@echo run Run the application
@echo run-debug Run the application with debug logging
@echo test Run all tests
@echo deps Download dependencies