From 9af53955dc09a9c7c510cd0ade758dd0af5bcabb Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 1 Oct 2021 23:29:16 +0000 Subject: Replace filter shell scripts with C program Eliminates the need for a shell inside the chroot, along with cat, mktemp and rm. It's likely a bit faster too. --- www/git.causal.agency/Makefile | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) (limited to 'www/git.causal.agency/Makefile') diff --git a/www/git.causal.agency/Makefile b/www/git.causal.agency/Makefile index 76c93d3a..f05d4a4a 100644 --- a/www/git.causal.agency/Makefile +++ b/www/git.causal.agency/Makefile @@ -3,46 +3,44 @@ CONFDIR = ${PREFIX}/conf DATADIR = ${PREFIX}/cgit BINDIR = ${PREFIX}/bin +CFLAGS += -Wall -Wextra +LDFLAGS = -static -pie + BINS += about-filter -BINS += cat -BINS += compress BINS += ctags BINS += email-filter BINS += gzip BINS += hilex BINS += htagml BINS += mandoc -BINS += mktemp BINS += mtags BINS += owner-filter -BINS += rm -BINS += sh BINS += source-filter all: ${BINS} -cat rm sh: - cp /bin/$@ $@ - -compress ctags mandoc mktemp: - ${MAKE} -C /usr/src/usr.bin/$@ LDFLAGS='-static -pie' +compress ctags mandoc: + ${MAKE} -C /usr/src/usr.bin/$@ LDFLAGS='${LDFLAGS}' mv /usr/src/usr.bin/$@/$@ $@ ${MAKE} -C /usr/src/usr.bin/$@ clean gzip: compress - cp compress $@ + ln -f compress $@ hilex htagml mtags: rm -f ../../bin/$@ - ${MAKE} -C ../../bin $@ LDFLAGS='-static -pie' + ${MAKE} -C ../../bin $@ LDFLAGS='${LDFLAGS}' mv ../../bin/$@ $@ +about-filter email-filter owner-filter source-filter: filter + ln -f filter $@ + install: cgitrc custom.css ${BINS} install -m 644 cgitrc ${CONFDIR} install -m 644 custom.css ${DATADIR} install -d -o www -g daemon ${PREFIX}/cache/cgit install -d -m 1700 -o www -g daemon ${PREFIX}/tmp - install ${BINS} ${BINDIR} + install -s ${BINS} ${BINDIR} clean: - rm -f ${BINS} + rm -f compress filter ${BINS} -- cgit 1.4.1 e='submit' value='search'/>
path: root/bin/dash/src/mail.h (unfollow)
Commit message (Collapse)Author
2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe
This fixes badly indented comments.
2021-09-08Up default min-repeat to 30 linesJune McEnroe
2021-09-08Handle dirty lines in git-commentJune McEnroe
2021-09-08Document and install git-commentJune McEnroe
2021-09-08Add repeat and all options to git-commentJune McEnroe
2021-09-08Add group threshold to git-commentJune McEnroe