Skip to content

Commit

Permalink
Add some missing files for PR #4
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsushi Abe committed Feb 27, 2019
1 parent 76634c7 commit e9f031c
Show file tree
Hide file tree
Showing 3 changed files with 501 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Files generated by ./autogen.sh
Makefile.in
aclocal.m4
autom4te.cache/
build-aux/
m4/
config.h.in
configure
ar-lib
compile
config.guess
config.sub
depcomp
install-sh
ltmain.sh
missing
# Files generated by ./configure
config.h
config.log
config.status
libtool
stamp-h1
.deps/
Makefile
# Files generated by make
*.o
*.a
*.lo
*.la
.libs/
.dirstamp
# Files for development
GPATH
GRTAGS
GTAGS
TAGS
tags
*~
34 changes: 34 additions & 0 deletions src/tape_drivers/generic/dummy/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#
#
# Copyright (c) 2019 IBM Corp.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of version 2.1 of the GNU Lesser General Public License
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to:
# Free Software Foundation, Inc.
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
#
#

lib_LTLIBRARIES = libtape-dummy.la
libdir = @libdir@/ltfs

AM_LIBTOOLFLAGS = --tag=disable-static

libtape_dummy_la_SOURCES = dummy.c
libtape_dummy_la_DEPENDENCIES =
libtape_dummy_la_LIBADD =
libtape_dummy_la_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src
libtape_dummy_la_LDFLAGS = -avoid-version -module

install-exec-hook:
for f in $(lib_LTLIBRARIES); do rm -f $(libdir)/$$f; done
Loading

0 comments on commit e9f031c

Please sign in to comment.