From c0fc8ea0a8449f4808cc83e5f8448a4c7743a260 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 4 Jan 2022 20:12:25 +0100 Subject: Rename to makel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Suggested by Laslo Hunhold, "Makel" is German for defect, deficiency, impurity, or imperfection (both singular and plural); a flaw. This change is to avoid confusion between make(1) and mk(1) Signed-off-by: Mattias Andrée --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c8329a8..13b29b2 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CONFIGFILE = config.mk include $(CONFIGFILE) OBJ =\ - mklint.o\ + makel.o\ makefile.o\ text.o\ ui.o @@ -12,28 +12,28 @@ OBJ =\ HDR =\ common.h -all: mklint +all: makel $(OBJ): $(HDR) .c.o: $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -mklint: $(OBJ) +makel: $(OBJ) $(CC) -o $@ $(OBJ) $(LDFLAGS) -install: mklint +install: makel mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/" - cp -- mklint "$(DESTDIR)$(PREFIX)/bin/" - cp -- mklint.1 "$(DESTDIR)$(MANPREFIX)/man1/" + cp -- makel "$(DESTDIR)$(PREFIX)/bin/" + cp -- makel.1 "$(DESTDIR)$(MANPREFIX)/man1/" uninstall: - -rm -f -- "$(DESTDIR)$(PREFIX)/bin/mklint" - -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/mklint.1" + -rm -f -- "$(DESTDIR)$(PREFIX)/bin/makel" + -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/makel.1" clean: -rm -f -- *.o *.a *.lo *.su *.so *.so.* *.gch *.gcov *.gcno *.gcda - -rm -f -- mklint + -rm -f -- makel .SUFFIXES: .SUFFIXES: .o .c -- cgit v1.2.3-70-g09d2