commit e5fb5176ba629e98ace5fcb3aa427b2c25d8fdf0
parent 95e3f2e9ce8389bb63b49cf728f3d93a3609507a
Author: Eyal Sawady <ecs@d2evs.net>
Date: Tue, 26 Apr 2022 15:06:48 +0000
Drop references to scdoc in the build system
It's not actually used anywhere
Signed-off-by: Eyal Sawady <ecs@d2evs.net>
Diffstat:
2 files changed, 1 insertion(+), 16 deletions(-)
diff --git a/Makefile b/Makefile
@@ -20,8 +20,6 @@ include tests/Makefile
@printf 'AS\t$@\n'
@$(AS) -o $@ $<
-docs:
-
clean: clean-tests clean-rt
@rm -f harec $(harec_objects)
@@ -32,4 +30,4 @@ install: harec
mkdir -p $(DESTDIR)$(BINDIR)
install -m755 harec $(DESTDIR)$(BINDIR)/harec
-.PHONY: docs clean distclean install
+.PHONY: clean distclean install
diff --git a/config.sh b/config.sh
@@ -7,7 +7,6 @@ CFLAGS=${CFLAGS:-}
LDFLAGS=${LDFLAGS:-}
LD=${LD:-ld}
QBE=${QBE:-qbe}
-SCDOC=${SCDOC:-scdoc}
for arg
do
@@ -124,8 +123,6 @@ find_library() {
LIBS="$LIBS $(pkg-config --libs "$pc")"
}
-docs() { true; }
-
run_configure() {
mkdir -p "$outdir"
@@ -142,15 +139,6 @@ run_configure() {
fi
done
- printf "Checking for scdoc... "
- if $SCDOC -v >/dev/null 2>&1
- then
- echo yes
- all="$all docs"
- else
- echo no
- fi
-
printf "Checking for qbe... "
if $QBE -h > /dev/null 2>&1
then
@@ -168,7 +156,6 @@ AS=$AS
LD=$LD
AR=$AR
QBE=$QBE
-SCDOC=$SCDOC
LIBS=$LIBS
PREFIX=${PREFIX:-/usr/local}
OUTDIR=${outdir}