File tree Expand file tree Collapse file tree 1 file changed +1
-63
lines changed
lib/node_modules/@stdlib/math/base/special/coth/src Expand file tree Collapse file tree 1 file changed +1
-63
lines changed Original file line number Diff line number Diff line change
1
+ # /
1
2
# @license Apache-2.0
2
3
#
3
4
# Copyright (c) 2024 The Stdlib Authors.
45
46
endif
46
47
47
48
48
- # RULES #
49
-
50
- # /
51
- # Removes generated files for building an add-on.
52
- #
53
- # @example
54
- # make clean-addon
55
- # /
56
- clean-addon :
57
- $(QUIET ) -rm -f * .o * .node
58
-
59
- .PHONY : clean-addon
60
-
61
- # /
62
- # Removes generated files.
63
- #
64
- # @example
65
- # make clean
66
- # /
67
- clean : clean-addon
68
-
69
- .PHONY : clean
70
- copy of the License at
71
- #
72
- # http://www.apache.org/licenses/LICENSE-2.0
73
- #
74
- # Unless required by applicable law or agreed to in writing, software
75
- # distributed under the License is distributed on an "AS IS" BASIS,
76
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
77
- # See the License for the specific language governing permissions and
78
- # limitations under the License.
79
- # /
80
-
81
- # VARIABLES #
82
-
83
- ifndef VERBOSE
84
- QUIET := @
85
- else
86
- QUIET :=
87
- endif
88
-
89
- # Determine the OS ([1][1], [2][2]).
90
- #
91
- # [1]: https://en.wikipedia.org/wiki/Uname#Examples
92
- # [2]: http://stackoverflow.com/a/27776822/2225624
93
- OS ?= $(shell uname)
94
- ifneq (, $(findstring MINGW,$(OS ) ) )
95
- OS := WINNT
96
- else
97
- ifneq (, $(findstring MSYS,$(OS ) ) )
98
- OS := WINNT
99
- else
100
- ifneq (, $(findstring CYGWIN,$(OS ) ) )
101
- OS := WINNT
102
- else
103
- ifneq (, $(findstring Windows_NT,$(OS ) ) )
104
- OS := WINNT
105
- endif
106
- endif
107
- endif
108
- endif
109
-
110
-
111
49
# RULES #
112
50
113
51
# /
You can’t perform that action at this time.
0 commit comments