0

I have just used some script for NotePad++ NppExec.

Where can I find references to explain below terms from the excerpt of the script?

It is supposed to be in a single line, but I break it down to 4 lines to reduce horizontal scroll Thank you.

-ansi -pedantic -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings 
$(FILE_NAME) -o $(NAME_PART).exe & IF ERRORLEVEL 1 
(echo. && echo Syntax errors were found during compiling.) 
ELSE ($(NAME_PART).exe) 
Edwin
  • 33
  • 1
  • 1
  • 6

1 Answers1

0

The text before the first & looks like command line options for a compiler. You could look at your compiler's documentation for the this part.

The remainder looks like Microsoft Windows batch commands. Use the help command at the command prompt for details.

AdrianHHH
  • 13,492
  • 16
  • 50
  • 87