1
0
mirror of https://github.com/brouhaha/tapeutils.git synced 2026-05-02 22:23:27 +00:00
This commit is contained in:
Lars Brinkhoff
2016-10-27 11:03:18 +02:00
parent 86e5f36943
commit a9d00fca34
9 changed files with 2131 additions and 66 deletions

View File

@@ -20,11 +20,11 @@
# options
# -----------------------------------------------------------------------------
CFLAGS = -O2
LDFLAGS =
# CFLAGS = -O2 -Wall
# LDFLAGS =
# CFLAGS = -g
# LDFLAGS = -g
CFLAGS = -g -Wall
LDFLAGS = -g
# -----------------------------------------------------------------------------
# You shouldn't have to change anything below this point, but if you do please
@@ -32,13 +32,13 @@ LDFLAGS =
# -----------------------------------------------------------------------------
PACKAGE = tapeutils
VERSION = 0.4
VERSION = 0.6
DSTNAME = $(PACKAGE)-$(VERSION)
PROGRAMS = tapecopy tapedump
PROGRAMS = tapecopy tapedump t10backup read20
HEADERS = tapeio.h
SOURCES = tapeio.c tapecopy.c tapedump.c
HEADERS = tapeio.h t10backup.h dumper.h
SOURCES = tapeio.c tapecopy.c tapedump.c t10backup.c read20.c
MISC = COPYING
DISTFILES = $(MISC) Makefile $(HEADERS) $(SOURCES)
@@ -60,6 +60,10 @@ tapecopy: tapecopy.o tapeio.o
tapedump: tapedump.o tapeio.o
t10backup: t10backup.o tapeio.o
read20: read20.o tapeio.o
include $(SOURCES:.c=.d)