Search/Replace for dragonx

This commit is contained in:
fekt
2024-04-10 20:06:11 -04:00
parent 2425b2b361
commit 74c901a945
12 changed files with 83 additions and 96 deletions

View File

@@ -1,22 +1,22 @@
.PHONY: format help
# Help system from https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.DEFAULT_GOAL := help
# Copyright (c) 2019-2022 Jahway603 & The Hush Developers
# Copyright (c) 2019-2024 Jahway603 & The Hush Developers
# Released under the GPLv3
#
# Hush Silentdragonlite-cli Makefile
PROJECT_NAME := "silentdragonlite-cli"
# DragonX Silentdragonlite-cli Makefile
PROJECT_NAME := "silentdragonxlite-cli"
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
about: ## Display release info
printf "Hush Silentdragonlite-cli Makefile by jahway603\n"
printf "DragonX Silentdragonlite-cli Makefile by jahway603\n"
build: ## Build the release
./util/build.sh
cp `pwd`/target/release/$(PROJECT_NAME) .
printf "Hush silentdragonlite-cli is ready for you\n"
printf "DragonX silentdragonxlite-cli is ready for you\n"
clean: ## Clean the repo
cargo clean