Rename fconv to pxfconv

This commit is contained in:
2024-10-10 22:11:39 +02:00
parent 6478a4c000
commit e229115c19
22 changed files with 18 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
PROJECTS = cpp_out fileconv mkoverlay psxcdgen_ex psxreadmap wslpath
PROJECTS = cpp_out psxfileconv mkoverlay psxcdgen_ex psxreadmap wslpath
.PHONY: $(PROJECTS)
$(foreach var,$(PROJECTS),$(var)):

View File

@@ -4,7 +4,7 @@ test_cpp_out: always
@echo "Planschbecken" | ./../cpp_out/target/x86_64-unknown-linux-gnu/release/cpp_out --name Dino -o "Test_Planschbecken.cpp"
@echo "Planschbecken" | ./../cpp_out/target/x86_64-unknown-linux-gnu/release/cpp_out --name Dino -o "Test_Planschbecken.hpp"
test_fileconv: always
# @./../fileconv/target/x86_64-unknown-linux-musl/release/fileconv -o Test_Planschi.bin Test_PNG.PNG simple-tim full16
@./../fileconv/target/x86_64-unknown-linux-gnu/release/fileconv --lz4 -o Test_Planschi.bin ../../Library/ressources/Splash.PNG simple-tim full16
test_psxfileconv: always
# @./../psxfileconv/target/x86_64-unknown-linux-musl/release/psxfileconv -o Test_Planschi.bin Test_PNG.PNG simple-tim full16
@./../psxfileconv/target/x86_64-unknown-linux-gnu/release/psxfileconv --lz4 -o Test_Planschi.bin ../../Library/ressources/Splash.PNG simple-tim full16
always: ;

View File

@@ -8,19 +8,19 @@
"cargo_task": [
"./ all!Unix: All",
"cpp_out all!Unix: cpp_out",
"fileconv all!Unix: fileconv",
"mkoverlay all!Unix: mkoverlay",
"psxcdgen_ex all!Unix: psxcdgen_ex",
"psxcdread all!Unix: psxcdread",
"psxfileconv all!Unix: psxfileconv",
"psxreadmap all!Unix: psxreadmap",
"wslpath all!Unix: wslpath",
"./ all-windows!Windows: All",
"cpp_out all-windows!Windows: cpp_out",
"fileconv all-windows!Windows: fileconv",
"mkoverlay all-windows!Windows: mkoverlay",
"psxcdgen_ex all-windows!Windows: psxcdgen_ex",
"psxcdread all-windows!Windows: psxcdread",
"psxfileconv all-windows!Windows: psxfileconv",
"psxreadmap all-windows!Windows: psxreadmap",
"wslpath all-windows!Windows: wslpath"
]

View File

@@ -1,5 +1,5 @@
[package]
name = "fileconv"
name = "psxfileconv"
version = "0.5.0"
edition = "2021"

View File

@@ -1,6 +1,6 @@
include ../Common.mk
ARTIFACT = fileconv
ARTIFACT = psxfileconv
.PHONY: $(WINDOWS_ARTIFACT) $(UNIX_ARTIFACT)
$(WINDOWS_ARTIFACT):

View File

@@ -1,5 +1,5 @@
use clap::{Parser, Subcommand};
use fileconv::{audio::{self, *}, images::*, nothing};
use psxfileconv::{audio::{self, *}, images::*, nothing};
use std::path::PathBuf;
use tool_helper::{exit_with_error, print_warning, Error};