forked from dry-com/proxy-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (28 loc) · 828 Bytes
/
Makefile
File metadata and controls
36 lines (28 loc) · 828 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
27
28
29
30
31
32
33
34
35
36
# Makefile for Tauri project
# Project Metadata
AUTHOR = @Aero25x & @stepanBD
# Default target: Help
.DEFAULT_GOAL := help
# Help: Show available commands
help:
@echo "Usage: make [command]"
@echo ""
@echo "Available commands:"
@echo " help Show this help message"
@echo " dev Run the Tauri application in development mode"
@echo " build Build the Tauri application for production"
@echo " clean Clean the project (remove target directory)"
@echo " author Show the author information"
# Dev: Run Tauri in development mode
dev:
cargo tauri dev
# Build: Build the Tauri application for production
build:
cargo tauri build
# Clean: Remove target directory
clean:
cargo clean
# Author: Show author information
author:
@echo "Author: $(AUTHOR)"
.PHONY: help dev build clean author