From fc4f1875fe57c39bf122cfb43a30893fef58c157 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sat, 3 Feb 2024 17:54:02 +0100 Subject: reapeat now built using the GNU Autotools --- Makefile | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 1f59519..0000000 --- a/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -PREFIX = /usr/local - -CFLAGS = -std=c99 -Wall -Wextra -pedantic -O0 -ggdb - -BIN = rpt -SRC = rpt.c -OBJ = rpt.o - -MAN_SRC = rpt.1 -MAN_PAGE = rpt.1.gz - -.PHONY: all compile man clean install uninstall - -all: compile man - -compile: $(BIN) - -$(BIN): $(OBJ) - cc $^ -o $@ - -%.o: %.c - cc $(CFLAGS) -c $< -o $@ - -man: $(MAN_PAGE) - -%.1.gz: %.1 - gzip -9 -c $< > $@ - -clean: - rm -f $(BIN) $(OBJ) $(MAN_PAGE) - -install: compile man - cp -f $(BIN) $(PREFIX)/bin - cp -f $(MAN_PAGE) $(PREFIX)/share/man/man1 - -uninstall: - rm -f $(PREFIX)/bin/$(BIN) $(PREFIX)/share/man/man1/$(MAN_PAGE) -- cgit v1.2.3