Skip to content

Commit

Permalink
Update makelx.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Jul 13, 2024
1 parent d3428ec commit d8f2537
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions util/user/makelx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ shift
ADDITIONAL_SOURCES=$*

# Usage information
echo "Makes an LX program file from source"
echo "Generate an executable LX program file from source code"
echo "Usage: $SCRIPT_NAME <main source file> [additional source files]..."
echo ""
echo "Usage Notes:"
echo " * File names cannot contain spaces, due to \"make\" command limitations."
echo " - https://savannah.gnu.org/bugs/?712"

echo ""
echo "Main program source file: '$MAIN_PROGRAM_SOURCE'"
Expand All @@ -30,9 +34,5 @@ echo " - $ADDITIONAL_SOURCES"
MAKE_COMMAND="${MAKE_PROGRAM} SOURCES='${MAIN_PROGRAM_SOURCE}' ${PROGRAM_NAME}_SRC='${ADDITIONAL_SOURCES}'"

echo ""
echo "Command to execute: ${MAKE_COMMAND}"
echo "Command: \"${MAKE_COMMAND}\""
echo "(Placeholder only - functionality not yet implemented)"

echo ""
echo "NOTE: make cannot handle spaces in file names"
echo " - https://savannah.gnu.org/bugs/?712"

0 comments on commit d8f2537

Please sign in to comment.