diff options
Diffstat (limited to 'xc/extras/Mesa/bin/mklib.amiwin')
-rwxr-xr-x | xc/extras/Mesa/bin/mklib.amiwin | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/xc/extras/Mesa/bin/mklib.amiwin b/xc/extras/Mesa/bin/mklib.amiwin new file mode 100755 index 000000000..1ab12d781 --- /dev/null +++ b/xc/extras/Mesa/bin/mklib.amiwin @@ -0,0 +1,43 @@ +; Script for building Mesa and example programs for AmiWin +; on the Amiga. + +if not exists lib +makedir lib +endif + +echo "Making MesaGL.LIB" +cd src +smake targets +cd / + +echo "Making MesaGLU.LIB" +cd src-glu +smake targets +cd / + +echo "Making Mesaaux.LIB" +cd src-aux +smake targets +cd / + +echo "Making Mesatk.LIB" +cd src-tk +smake targets +cd / + +echo "Making book examples." +cd book +smake targets +cd / + +echo "Making sample code." +cd samples +smake targets +cd / + +echo "Making demo code." +cd demos +smake targets +cd / + +echo "Finished making all libraries and programs." |