-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.messages
69 lines (65 loc) · 2.18 KB
/
Makefile.messages
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
##
## %Z% %I% %W% %G% %U%
##
## ZZ_Copyright_BEGIN
##
##
## Licensed Materials - Property of IBM
##
## IBM Linear Tape File System Single Drive Edition Version 2.2.1 for Linux and Mac OS X
##
## Copyright IBM Corp. 2010, 2016
##
## 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: Makefile for LTFS message library on OS X.
##
## AUTHOR: Michael A. Richmond
## IBM Almaden Research Center
##
######################################################################################
RESOURCES=libltfs_dat.o \
tape_generic_file_dat.o \
tape_generic_itdtimg_dat.o \
tape_iokit_ibmtape_dat.o \
tape_common_dat.o \
iosched_fcfs_dat.o \
iosched_unified_dat.o \
bin_mkltfs_dat.o \
bin_ltfs_dat.o \
bin_ltfsck_dat.o \
internal_error_dat.o \
kmi_simple_dat.o \
kmi_flatfile_dat.o
.PHONY: all $(RESOURCES) clean-local
all: $(RESOURCES)
$(RESOURCES):
cd ltfs/messages && ./make_message_src.sh $@
clean-local:
rm -rf $(RESOURCES) */work