From b8be82d9113dd0fec9021aa573039cc64dbd849a Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Tue, 31 May 2022 14:17:19 +0200
Subject: Clean

---
 .repos/sent/Makefile | 60 ----------------------------------------------------
 1 file changed, 60 deletions(-)
 delete mode 100644 .repos/sent/Makefile

(limited to '.repos/sent/Makefile')

diff --git a/.repos/sent/Makefile b/.repos/sent/Makefile
deleted file mode 100644
index 56e6367..0000000
--- a/.repos/sent/Makefile
+++ /dev/null
@@ -1,60 +0,0 @@
-# sent - plain text presentation tool
-# See LICENSE file for copyright and license details.
-
-include config.mk
-
-SRC = sent.c drw.c util.c
-OBJ = ${SRC:.c=.o}
-
-all: options sent
-
-options:
-	@echo sent build options:
-	@echo "CFLAGS   = ${CFLAGS}"
-	@echo "LDFLAGS  = ${LDFLAGS}"
-	@echo "CC       = ${CC}"
-
-config.h:
-	cp config.def.h config.h
-
-.c.o:
-	@echo CC $<
-	@${CC} -c ${CFLAGS} $<
-
-${OBJ}: config.h config.mk
-
-sent: ${OBJ}
-	@echo CC -o $@
-	@${CC} -o $@ ${OBJ} ${LDFLAGS}
-
-cscope: ${SRC} config.h
-	@echo cScope
-	@cscope -R -b || echo cScope not installed
-
-clean:
-	@echo cleaning
-	@rm -f sent ${OBJ} sent-${VERSION}.tar.gz
-
-dist: clean
-	@echo creating dist tarball
-	@mkdir -p sent-${VERSION}
-	@cp -R LICENSE Makefile config.mk config.def.h ${SRC} sent-${VERSION}
-	@tar -cf sent-${VERSION}.tar sent-${VERSION}
-	@gzip sent-${VERSION}.tar
-	@rm -rf sent-${VERSION}
-
-install: all
-	@echo installing executable file to ${DESTDIR}${PREFIX}/bin
-	@mkdir -p ${DESTDIR}${PREFIX}/bin
-	@cp -f sent ${DESTDIR}${PREFIX}/bin
-	@chmod 755 ${DESTDIR}${PREFIX}/bin/sent
-	@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
-	@mkdir -p ${DESTDIR}${MANPREFIX}/man1
-	@cp sent.1 ${DESTDIR}${MANPREFIX}/man1/sent.1
-	@chmod 644 ${DESTDIR}${MANPREFIX}/man1/sent.1
-
-uninstall:
-	@echo removing executable file from ${DESTDIR}${PREFIX}/bin
-	@rm -f ${DESTDIR}${PREFIX}/bin/sent
-
-.PHONY: all options clean dist install uninstall cscope
-- 
cgit v1.2.3