From 0965257320c2fc6776bc584fedaefcbed1424c9e Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Sun, 8 Dec 2024 01:52:52 +0100 Subject: [PATCH] BREAKING CHANGE(Makefile): rbmk-small => rbmk-lite The new name seems more idiomatic for a version of rbmk built without supporting extra features (e.g., markdown rendering). --- .gitignore | 2 +- Makefile | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index b37e4bd..fb4b348 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .DS_Store /rbmk -/rbmk-small +/rbmk-lite diff --git a/Makefile b/Makefile index 3d6f91c..9a37e06 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,9 @@ help: @cat Makefile | grep -E '^#doc:' | sed -e 's/^#doc: //g' -e 's/^#doc://' #doc: -#doc: - `all`: builds `rbmk` and `rbmk-small` +#doc: - `all`: builds `rbmk` and `rbmk-lite` .PHONY: all -all: rbmk rbmk-small +all: rbmk rbmk-lite #doc: #doc: - `rbmk`: build rbmk in the current directory @@ -20,10 +20,10 @@ rbmk: go build -v -o rbmk -ldflags '-s -w' -tags netgo ./cmd/rbmk #doc: -#doc: - `rbmk-small`: build rbmk without optional features in the current dir -.PHONY: rbmk-small -rbmk-small: - go build -v -o rbmk-small -ldflags '-s -w' -tags rbmk_disable_markdown,netgo ./cmd/rbmk +#doc: - `rbmk-lite`: build rbmk without optional features in the current dir +.PHONY: rbmk-lite +rbmk-lite: + go build -v -o rbmk-lite -ldflags '-s -w' -tags rbmk_disable_markdown,netgo ./cmd/rbmk #doc: #doc: - `check`: run tests @@ -35,6 +35,6 @@ check: #doc: - `clean`: remove build artifacts .PHONY: clean clean: - rm -f rbmk rbmk-small + rm -f rbmk rbmk-lite #doc: