From b3735fa36420a43e1be0b0bb747cb16884035189 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Thu, 5 Mar 2026 04:09:01 +0900 Subject: [PATCH] rename Makefile.pl to configure --- Jenkinsfile | 6 +++--- README.txt | 46 +++++++++++++++++++--------------------- Makefile.pl => configure | 2 +- tools/readme.pl | 4 ++-- 4 files changed, 28 insertions(+), 30 deletions(-) rename Makefile.pl => configure (98%) diff --git a/Jenkinsfile b/Jenkinsfile index 58736fd..5588f1b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { label "built-in" } steps { - sh("./Makefile.pl --enable-opengl --enable-vulkan --without-vulkan-string-helper") + sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper") sh("make clean") sh("make -j4") } @@ -32,7 +32,7 @@ pipeline { label "built-in" } steps { - sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32") + sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32") sh("make clean") sh("make -j4") } @@ -42,7 +42,7 @@ pipeline { label "built-in" } steps { - sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32") + sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32") sh("make clean") sh("make -j4") } diff --git a/README.txt b/README.txt index 744e7a8..f69b636 100644 --- a/README.txt +++ b/README.txt @@ -1,25 +1,23 @@ -Greetings - Welcome to the Milsko GUI Toolkit (Version pre-1.0) +Greetings - Welcome to the Milsko GUI Toolkit (Version pre-1.0) - This document contains a brief summary of the contents of this source -distributions and building instructions for Milsko GUI Toolkit. + This document contains a brief summary of the contents of this source +distributions and building instructions for Milsko GUI Toolkit. Requirements - Milsko requires either - * A Windows environment with GDI (so anything NT or 9x) - * A Mac OS environment with Cocoa (10.4 is the minimum tested) - * Unix-like environment with X11 for runtime. + Milsko requires the Windows environment with GDI (so anything NT or 9x) or +the Unix-like environment with X11 for runtime. - To build Milsko for Windows, you must have one of following compilers: - * Visual C++ 6.0 or newer - * Borland C++ 5.5 or newer - * Open Watcom 2.0 or newer - * MinGW-w64 + To build Milsko for Windows, you must have one of following compilers: + * Visual C++ 6.0 or newer + * Borland C++ 5.5 or newer + * Open Watcom 2.0 or newer + * MinGW-w64 - and for Unix-like/Mac OS: - * GNU C Compiler - * Clang + and for Unix-like: + * GNU C Compiler + * Clang Contents @@ -41,31 +39,31 @@ distributions and building instructions for Milsko GUI Toolkit. Building Milsko - Building Milsko depends on the platform you use, and the compiler you use. + Building Milsko depends on the platform you use, and the compiler you use. A. Visual C++ ------------- -1) Run `nmake -f NTMakefile'. +1) Run `nmake -f NTMakefile'. B. Borland C++ -------------- -1) Run `make -f BorMakefile'. +1) Run `make -f BorMakefile'. C. Open Watcom -------------- -1) Run `wmake -f WatMakefile'. +1) Run `wmake -f WatMakefile'. D. MinGW-w64/GCC/Clang ---------------------- -1) Determine if you need Vulkan and/or OpenGL. +1) Determine if you need Vulkan and/or OpenGL. -2) Run `./Makefile.pl'. - For help, run `./Makefile.pl --help'. +2) Run `./configure'. + For help, run `./configure --help'. -3) Run `make'. +3) Run `make'. - -- Nishi (nishi@nishi.boats) + -- Nishi (nishi@nishi.boats) diff --git a/Makefile.pl b/configure similarity index 98% rename from Makefile.pl rename to configure index 519781e..5ffbe54 100755 --- a/Makefile.pl +++ b/configure @@ -187,7 +187,7 @@ print(OUT " clang-format --verbose -i `find src include examples -name \"*.c\" -or -name \"*.h\" -or -name \"*.m\"`\n" ); print(OUT -" perltidy -b -bext=\"/\" --paren-tightness=2 `find tools pl Makefile.pl -name \"*.pl\"`\n" +" perltidy -b -bext=\"/\" --paren-tightness=2 `find tools pl configure -name \"*.pl\"`\n" ); print(OUT "\n"); print(OUT "lib:"); diff --git a/tools/readme.pl b/tools/readme.pl index 573d957..c511f79 100755 --- a/tools/readme.pl +++ b/tools/readme.pl @@ -105,8 +105,8 @@ l("1) Run `wmake -f WatMakefile'."); h("D. MinGW-w64/GCC/Clang"); l("1) Determine if you need Vulkan and/or OpenGL."); l(""); -l("2) Run `./Makefile.pl'."); -l(" For help, run `./Makefile.pl --help'."); +l("2) Run `./configure'."); +l(" For help, run `./configure --help'."); l(""); l("3) Run `make'."); l("");