mirror of
https://github.com/nix-community/hpe-ltfs.git
synced 2025-12-23 05:55:13 +00:00
81 lines
2.6 KiB
Makefile
81 lines
2.6 KiB
Makefile
##
|
|
## %Z% %I% %W% %G% %U%
|
|
##
|
|
## ZZ_Copyright_BEGIN
|
|
##
|
|
##
|
|
## Licensed Materials - Property of IBM
|
|
##
|
|
## IBM Linear Tape File System Single Drive Edition Version 2.2.0.2 for Linux and Mac OS X
|
|
##
|
|
## Copyright IBM Corp. 2010, 2014
|
|
##
|
|
## This file is part of the IBM Linear Tape File System Single Drive Edition for Linux and Mac OS X
|
|
## (formally known as IBM Linear Tape File System)
|
|
##
|
|
## The IBM Linear Tape File System Single Drive Edition for Linux and Mac OS X is free software;
|
|
## you can redistribute it and/or modify it under the terms of the GNU Lesser
|
|
## General Public License as published by the Free Software Foundation,
|
|
## version 2.1 of the License.
|
|
##
|
|
## The IBM Linear Tape File System Single Drive Edition for Linux and Mac OS X 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 Lesser General Public
|
|
## License along with this library; if not, write to the Free Software
|
|
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
## or download the license from <http://www.gnu.org/licenses/>.
|
|
##
|
|
##
|
|
## ZZ_Copyright_END
|
|
##
|
|
######################################################################################
|
|
##
|
|
## COMPONENT NAME: IBM Linear Tape File System
|
|
##
|
|
## FILE NAME: Makefile.osx
|
|
##
|
|
## DESCRIPTION: Automake template for LTFS message libraries on Linux.
|
|
##
|
|
## AUTHOR: Brian Biskeborn
|
|
## IBM Almaden Research Center
|
|
## bbiskebo@us.ibm.com
|
|
##
|
|
######################################################################################
|
|
##
|
|
## (C) Copyright 2015, 2016 Hewlett Packard Enterprise Development LP
|
|
##
|
|
## 10/08/10 Add ltotape to list of RESOURCES
|
|
##
|
|
######################################################################################
|
|
|
|
##
|
|
## OSR/HPE_mingw_BUILD
|
|
##
|
|
## Object file name must be changed from libltfs_dat to bin_libltfs_dat. This is
|
|
## part of changing the package name from libltfs to bin_libltfs to avoid collision
|
|
## with libltfs.dll, which is the name of the LTFS library code
|
|
##
|
|
RESOURCES = \
|
|
bin_mkltfs_dat.o \
|
|
bin_ltfsck_dat.o \
|
|
bin_ltfs_dat.o \
|
|
kmi_simple_dat.o \
|
|
kmi_flatfile_dat.o \
|
|
driver_ltotape_dat.o \
|
|
iosched_fcfs_dat.o \
|
|
iosched_unified_dat.o \
|
|
bin_libltfs_dat.o \
|
|
internal_error_dat.o
|
|
|
|
.PHONY: all $(RESOURCES) clean-local
|
|
all: $(RESOURCES)
|
|
|
|
$(RESOURCES):
|
|
@./make_message_src.sh $@
|
|
|
|
clean-local:
|
|
rm -rf $(RESOURCES) */work
|