Skip to content

Commit e9f031c

Browse files
author
Atsushi Abe
committed
Add some missing files for PR #4
1 parent 76634c7 commit e9f031c

File tree

3 files changed

+501
-0
lines changed

3 files changed

+501
-0
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Files generated by ./autogen.sh
2+
Makefile.in
3+
aclocal.m4
4+
autom4te.cache/
5+
build-aux/
6+
m4/
7+
config.h.in
8+
configure
9+
ar-lib
10+
compile
11+
config.guess
12+
config.sub
13+
depcomp
14+
install-sh
15+
ltmain.sh
16+
missing
17+
# Files generated by ./configure
18+
config.h
19+
config.log
20+
config.status
21+
libtool
22+
stamp-h1
23+
.deps/
24+
Makefile
25+
# Files generated by make
26+
*.o
27+
*.a
28+
*.lo
29+
*.la
30+
.libs/
31+
.dirstamp
32+
# Files for development
33+
GPATH
34+
GRTAGS
35+
GTAGS
36+
TAGS
37+
tags
38+
*~
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#
2+
#
3+
# Copyright (c) 2019 IBM Corp.
4+
#
5+
# This program is free software; you can redistribute it and/or modify it
6+
# under the terms of version 2.1 of the GNU Lesser General Public License
7+
# as published by the Free Software Foundation.
8+
#
9+
# This program is distributed in the hope that it will be useful, but
10+
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11+
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12+
# License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License along
15+
# with this program; if not, write to:
16+
# Free Software Foundation, Inc.
17+
# 51 Franklin Street, Fifth Floor
18+
# Boston, MA 02110-1301, USA.
19+
#
20+
#
21+
22+
lib_LTLIBRARIES = libtape-dummy.la
23+
libdir = @libdir@/ltfs
24+
25+
AM_LIBTOOLFLAGS = --tag=disable-static
26+
27+
libtape_dummy_la_SOURCES = dummy.c
28+
libtape_dummy_la_DEPENDENCIES =
29+
libtape_dummy_la_LIBADD =
30+
libtape_dummy_la_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src
31+
libtape_dummy_la_LDFLAGS = -avoid-version -module
32+
33+
install-exec-hook:
34+
for f in $(lib_LTLIBRARIES); do rm -f $(libdir)/$$f; done

0 commit comments

Comments
 (0)