sltar

a simple tar implementation
git clone git://git.suckless.org/sltar
Log | Files | Refs | LICENSE

commit 61414f7d5871d3ba5ea80bc1fa136859e08a00b7
parent f85efd1f0043534d0032e42f0d8c5f82eaabc7c2
Author: gottox@rootkit.lan <unknown>
Date:   Wed, 19 Dec 2007 13:35:45 +0100

version 0.1.3
Diffstat:
Makefile | 8++++----
config.mk | 2+-
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ TARGET = sltar all: options ${TARGET} options: - @echo spiceman build options: + @echo ${TARGET} build options: @echo "CFLAGS = ${CFLAGS}" @echo "LDFLAGS = ${LDFLAGS}" @echo "CC = ${CC}" @@ -42,7 +42,7 @@ install: all @echo installing executable file to ${DESTDIR}${PREFIX}/bin @mkdir -p ${DESTDIR}${PREFIX}/bin @cp -f ${TARGET} ${DESTDIR}${PREFIX}/bin - @chmod 755 ${DESTDIR}${PREFIX}/bin/spiceman + @chmod 755 ${DESTDIR}${PREFIX}/bin/${TARGET} @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1 @mkdir -p ${DESTDIR}${MANPREFIX}/man1 @sed "s/VERSION/${VERSION}/g" < ${TARGET}.1 > ${DESTDIR}${MANPREFIX}/man1/${TARGET}.1 @@ -50,8 +50,8 @@ install: all uninstall: @echo removing executable file from ${DESTDIR}${PREFIX}/bin - @rm -f ${DESTDIR}${PREFIX}/bin/spiceman + @rm -f ${DESTDIR}${PREFIX}/bin/${TARGET} @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1 - @rm -f ${DESTDIR}${MANPREFIX}/man1/spiceman.1 + @rm -f ${DESTDIR}${MANPREFIX}/man1/${TARGET}.1 .PHONY: all options clean dist install uninstall diff --git a/config.mk b/config.mk @@ -1,5 +1,5 @@ # sltar version -VERSION = 0.1.2 +VERSION = 0.1.3 # Customize below to fit your system