rename Makefile.pl to configure
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-05 04:09:01 +09:00
commit b3735fa364
Signed by: nishi
GPG key ID: 27EF69B208EB9343
4 changed files with 28 additions and 30 deletions

6
Jenkinsfile vendored
View file

@ -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")
}

View file

@ -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)

View file

@ -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:");

View file

@ -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("");