-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·48 lines (45 loc) · 1.41 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
##----------------------------------------------------------------------------
##
## Copyright (C) 2023 Frank Eskesen.
##
## This file is free content, distributed under the MIT license.
## (See accompanying file LICENSE.MIT or the original contained
## within https://opensource.org/licenses/MIT)
##
##----------------------------------------------------------------------------
##
## Title-
## configure
##
## Purpose-
## Configuration setup.
##
## Last change date-
## 2023/08/04
##
## Usage-
## configure
##
##############################################################################
##############################################################################
## Function: USAGE
function usage
{
echo ""
echo "SDL (Software Development Laboratory) configuration instructions:"
echo
echo "The 'setupSDL' script initializes SDL environment variables, setting:"
echo " - SDL_ROOT to the the SDL runtime directory."
echo " - PATH to include the (static) bat and (updatable) bin directories."
echo
echo "Use '. setupSDL' to initialize your environment."
echo
echo "GNU make is used for configuration, not the full GNU build system."
echo "Use 'make' (without options) to list available targets and a brief"
echo "description of what they do."
exit 0
}
##############################################################################
## Configure
usage