aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <[email protected]>2016-03-20 17:29:31 +0100
committerHiltjo Posthuma <[email protected]>2016-03-20 17:29:31 +0100
commit0328079589e5a92eac94b594aa6361d38e7fbc76 (patch)
tree2918bd9b93567a9ed70025b6c599ef66e411d48e /Makefile
parentcd6a519813d97f6c28ad80d6bc08ad58e14ee401 (diff)
downloadstagit-0328079589e5a92eac94b594aa6361d38e7fbc76.tar.gz
stagit-0328079589e5a92eac94b594aa6361d38e7fbc76.zip
Makefile: use NAME variable, suggested by Quentin
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index d6d4c5d..1b4dffc 100644
--- a/Makefile
+++ b/Makefile
@@ -37,17 +37,17 @@ all: $(BIN)
${CC} -c ${CFLAGS} ${CPPFLAGS} -o $@ -c $<
dist:
- rm -rf stagit-${VERSION}
- mkdir -p stagit-${VERSION}
+ rm -rf ${NAME}-${VERSION}
+ mkdir -p ${NAME}-${VERSION}
cp -f ${MAN1} ${HDR} ${SCRIPTS} ${SRC} ${COMPATSRC} ${DOC} \
Makefile config.def.h config.mk \
favicon.png logo.png style.css \
example.sh \
- stagit-${VERSION}
+ ${NAME}-${VERSION}
# make tarball
- tar -cf - stagit-${VERSION} | \
- gzip -c > stagit-${VERSION}.tar.gz
- rm -rf stagit-${VERSION}
+ tar -cf - ${NAME}-${VERSION} | \
+ gzip -c > ${NAME}-${VERSION}.tar.gz
+ rm -rf ${NAME}-${VERSION}
${OBJ}: config.h config.mk ${HDR}