From 7bf6be9397c3eed2f469522b6365fb63e9250817 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Thu, 3 Oct 2024 02:05:27 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 +- base/special/coth/src/Makefile | 64 +--------------------------------- 2 files changed, 3 insertions(+), 64 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14f34d143..a40194605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-10-02) +## Unreleased (2024-10-03)
@@ -431,6 +431,7 @@ A total of 4 people contributed to this release. Thank you to the following cont
+- [`edabc3d`](https://github.com/stdlib-js/stdlib/commit/edabc3d28079c34951d12a94071233dc17cfdb66) - **build:** fix Makefile contents _(by Philipp Burckhardt)_ - [`24fadbf`](https://github.com/stdlib-js/stdlib/commit/24fadbf27f7a01624648ed5bea5cce504b3f65d1) - **bench:** fix runner _(by Athan Reines)_ - [`8f0f3b6`](https://github.com/stdlib-js/stdlib/commit/8f0f3b65ddcd28963d55d7956a22d801f59155fa) - **bench:** use SpecialFunctions package _(by Athan Reines)_ - [`c94a8b2`](https://github.com/stdlib-js/stdlib/commit/c94a8b2eee5d00c623ecccbb0aeef4daefb4ed06) - **bench:** update value ranges _(by Athan Reines)_ diff --git a/base/special/coth/src/Makefile b/base/special/coth/src/Makefile index 8be96d0b0..bcf18aa46 100644 --- a/base/special/coth/src/Makefile +++ b/base/special/coth/src/Makefile @@ -1,3 +1,4 @@ +#/ # @license Apache-2.0 # # Copyright (c) 2024 The Stdlib Authors. @@ -45,69 +46,6 @@ endif endif -# RULES # - -#/ -# Removes generated files for building an add-on. -# -# @example -# make clean-addon -#/ -clean-addon: - $(QUIET) -rm -f *.o *.node - -.PHONY: clean-addon - -#/ -# Removes generated files. -# -# @example -# make clean -#/ -clean: clean-addon - -.PHONY: clean - copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# VARIABLES # - -ifndef VERBOSE - QUIET := @ -else - QUIET := -endif - -# Determine the OS ([1][1], [2][2]). -# -# [1]: https://en.wikipedia.org/wiki/Uname#Examples -# [2]: http://stackoverflow.com/a/27776822/2225624 -OS ?= $(shell uname) -ifneq (, $(findstring MINGW,$(OS))) - OS := WINNT -else -ifneq (, $(findstring MSYS,$(OS))) - OS := WINNT -else -ifneq (, $(findstring CYGWIN,$(OS))) - OS := WINNT -else -ifneq (, $(findstring Windows_NT,$(OS))) - OS := WINNT -endif -endif -endif -endif - - # RULES # #/