more Windows Makefile updates

Default to INTERNET_AVAILABLE=Y. If the build computer is not
online with the internet available, an explicit
INTERNET_AVAILABLE=N
will be required for the build, if pdcurses and Lua are not already
staged in the lib folder. That can be done by editing the appropriate line
in the Makefile, or by altering the command line:
    nmake INTERNET_AVAILABLE=N install

With Makefile.nmake:

Store pdcurses wingui and pdcurses wincon object files in separate
directories.

Rename the two pdcurses static libraries.

Because of the static library changes, the following will be required
prior to the next build:
    nmake spotless
This commit is contained in:
nhmall
2024-02-10 20:20:14 -05:00
parent 9e6872d982
commit 3119bc1ec2
3 changed files with 75 additions and 81 deletions

View File

@@ -60,9 +60,9 @@ DEBUGINFO = N
#---------------------------------------------------------------
# Do you have a connection to the internet available that you want
# to utilize for obtaining prerequisite Lua source code and pdcurses source code
#
# Default to Y.
INTERNET_AVAILABLE = N
INTERNET_AVAILABLE = Y
#
#---------------------------------------------------------------