jagan-parthiban commented on code in PR #7584: URL: https://github.com/apache/trafficcontrol/pull/7584#discussion_r1237062884
########## docs/Makefile: ########## @@ -18,11 +18,21 @@ # under the License. # +ifeq ($(OS),Windows_NT) + T3C_DIR_SEP := \\ + RM := del /s /q + PY := python +else + T3C_DIR_SEP := / + RM := rm -rf Review Comment: RM is just a variable name. It can be anything like, REM or RMM. Based on the OS, It gets substituted with `del /s /q` or `rm -rf`. This is added because default `make clean` fails in windows OS as the `rm -rf `command is not recognized. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
