Add newline at end of each help_* targets
This commit is contained in:
6
Makefile
6
Makefile
@@ -74,7 +74,11 @@ help_usage:
|
||||
@echo test, test_all: Test OR-Tools for all available languages.
|
||||
@echo clean, clean_all: Clean output from previous build for all available languages \(won\'t clean third party\).
|
||||
@echo detect, detect_all: Show variables used to build OR-Tools for all available languages.
|
||||
@echo ""
|
||||
ifeq ($(SYSTEM),win)
|
||||
@echo.
|
||||
else
|
||||
@echo
|
||||
endif
|
||||
|
||||
.PHONY: help_all
|
||||
help_all: help_usage help_third_party help_cc help_python help_java help_csharp help_fsharp
|
||||
|
||||
@@ -4,8 +4,10 @@ help_cc:
|
||||
@echo Use one of the following C++ targets:
|
||||
ifeq ($(SYSTEM),win)
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.cpp.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
else
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.cpp.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t20
|
||||
@echo
|
||||
endif
|
||||
|
||||
.PHONY: ccc rcc clean_cc clean_compat ccexe
|
||||
|
||||
@@ -4,8 +4,10 @@ help_csharp:
|
||||
@echo Use one of the following C# targets:
|
||||
ifeq ($(SYSTEM),win)
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.csharp.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
else
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.csharp.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t20
|
||||
@echo
|
||||
endif
|
||||
|
||||
# Check for required build tools
|
||||
|
||||
@@ -4,8 +4,10 @@ help_fsharp:
|
||||
@echo Use one of the following F# targets:
|
||||
ifeq ($(SYSTEM),win)
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.fsharp.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
else
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.fsharp.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t20
|
||||
@echo
|
||||
endif
|
||||
|
||||
BASE_ORTOOLS_DLL_NAME=Google.OrTools
|
||||
|
||||
@@ -4,8 +4,10 @@ help_java:
|
||||
@echo Use one of the following Java targets:
|
||||
ifeq ($(SYSTEM),win)
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.java.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
else
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.java.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t24
|
||||
@echo
|
||||
endif
|
||||
|
||||
.PHONY: rjava cjava
|
||||
|
||||
@@ -4,8 +4,10 @@ help_python:
|
||||
@echo Use one of the following Python targets:
|
||||
ifeq ($(SYSTEM),win)
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.python.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
else
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.python.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t24
|
||||
@echo
|
||||
endif
|
||||
|
||||
OR_TOOLS_PYTHONPATH = $(OR_ROOT_FULL)$(CPSEP)$(OR_ROOT_FULL)$Sdependencies$Ssources$Sprotobuf-$(PROTOBUF_TAG)$Spython
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
help_third_party:
|
||||
@echo Use one of the following Prerequisite targets:
|
||||
@grep "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.third_party.unix.mk | sed "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t20
|
||||
@echo
|
||||
|
||||
# Tags of dependencies to checkout.
|
||||
GFLAGS_TAG = 2.2.1
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
help_third_party:
|
||||
@echo Use one of the following Prerequisite targets:
|
||||
@tools\grep.exe "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.third_party.win.mk | tools\sed.exe "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/"
|
||||
@echo.
|
||||
|
||||
# tags of dependencies to checkout.
|
||||
GFLAGS_TAG = 2.2.1
|
||||
|
||||
Reference in New Issue
Block a user