From 8d0b7c2832d80a9a64e5ff01d0fba2c6846bbc5d Mon Sep 17 00:00:00 2001 From: Demonstrandum Date: Wed, 1 Jul 2020 16:59:08 +0100 Subject: [PATCH] Change bin to .out file. --- Makefile | 8 ++++---- repo-gen.sh | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index d5f4876..56b52e6 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,8 @@ COMPATSRC = \ strlcat.c\ strlcpy.c BIN = \ - stagit\ - stagit-index + stagit.out\ + stagit-index.out MAN1 = \ stagit.1\ stagit-index.1 @@ -63,10 +63,10 @@ dist: ${OBJ}: ${HDR} -stagit: stagit.o ${COMPATOBJ} +stagit.out: stagit.o ${COMPATOBJ} ${CC} -o $@ stagit.o ${COMPATOBJ} ${STAGIT_LDFLAGS} -stagit-index: stagit-index.o ${COMPATOBJ} +stagit-index.out: stagit-index.o ${COMPATOBJ} ${CC} -o $@ stagit-index.o ${COMPATOBJ} ${STAGIT_LDFLAGS} clean: diff --git a/repo-gen.sh b/repo-gen.sh index f74e02f..1b4659c 100755 --- a/repo-gen.sh +++ b/repo-gen.sh @@ -6,10 +6,10 @@ for arg in "$@"; do [ "$arg" = "--fresh" ] && fresh=true done -STAGIT=/var/www/git/stagit +STAGIT=/var/www/git/stagit.out [ ! -f "$STAGIT" ] && STAGIT=stagit -STAGIT_INDEX=/var/www/git/stagit-index +STAGIT_INDEX=/var/www/git/stagit-index.out [ ! -f "$STAGIT_INDEX" ] && STAGIT_INDEX=stagit-index for repo in /srv/git/*.git; do -- 2.39.2