1
0
mirror of https://github.com/brouhaha/tapeutils.git synced 2026-02-21 23:08:07 +00:00

Add tool for writing files to a tapes.

This commit is contained in:
Lars Brinkhoff
2016-10-27 13:18:05 +02:00
parent a215ffeeda
commit 2d4559f2da
3 changed files with 155 additions and 2 deletions

View File

@@ -35,10 +35,10 @@ PACKAGE = tapeutils
VERSION = 0.6
DSTNAME = $(PACKAGE)-$(VERSION)
PROGRAMS = tapecopy tapedump taperead t10backup read20
PROGRAMS = tapecopy tapedump taperead tapewrite t10backup read20
HEADERS = tapeio.h t10backup.h dumper.h
SOURCES = tapeio.c tapecopy.c tapedump.c taperead.c t10backup.c read20.c
SOURCES = tapeio.c tapecopy.c tapedump.c taperead.c tapewrite.c t10backup.c read20.c
MISC = COPYING
DISTFILES = $(MISC) Makefile $(HEADERS) $(SOURCES)
@@ -62,6 +62,8 @@ tapedump: tapedump.o tapeio.o
taperead: taperead.o tapeio.o
tapewrite: tapewrite.o tapeio.o
t10backup: t10backup.o tapeio.o
read20: read20.o tapeio.o