-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Atsushi Abe
committed
Feb 27, 2019
1 parent
76634c7
commit e9f031c
Showing
3 changed files
with
501 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.