Skip to content

Commit edabc3d

Browse files
committed
build: fix Makefile contents
1 parent 5d79f98 commit edabc3d

File tree

1 file changed

+1
-63
lines changed
  • lib/node_modules/@stdlib/math/base/special/coth/src

1 file changed

+1
-63
lines changed

lib/node_modules/@stdlib/math/base/special/coth/src/Makefile

Lines changed: 1 addition & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#/
12
# @license Apache-2.0
23
#
34
# Copyright (c) 2024 The Stdlib Authors.
@@ -45,69 +46,6 @@ endif
4546
endif
4647

4748

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-
11149
# RULES #
11250

11351
#/

0 commit comments

Comments
 (0)