~ubuntu-branches/ubuntu/edgy/xfsprogs/edgy

« back to all changes in this revision

Viewing changes to io/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2004-07-28 21:11:38 UTC
  • Revision ID: james.westby@ubuntu.com-20040728211138-0v4pdnunnp7na5lm
Tags: 2.6.20-1
* New upstream release.
* Fix xfs_io segfault on non-XFS files.  (closes: #260470)
* Fix packaging botch, deleted files included.  (closes: #260491)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify it
 
5
# under the terms of version 2 of the GNU General Public License as
 
6
# published by the Free Software Foundation.
 
7
#
 
8
# This program is distributed in the hope that it would be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
11
#
 
12
# Further, this software is distributed without any warranty that it is
 
13
# free of the rightful claim of any third person regarding infringement
 
14
# or the like.  Any license provided herein, whether implied or
 
15
# otherwise, applies only to this software file.  Patent licenses, if
 
16
# any, provided herein do not apply to combinations of this program with
 
17
# other software, or any other product whatsoever.
 
18
#
 
19
# You should have received a copy of the GNU General Public License along
 
20
# with this program; if not, write the Free Software Foundation, Inc., 59
 
21
# Temple Place - Suite 330, Boston MA 02111-1307, USA.
 
22
#
 
23
# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
 
24
# Mountain View, CA  94043, or:
 
25
#
 
26
# http://www.sgi.com
 
27
#
 
28
# For further information regarding this notice, see:
 
29
#
 
30
# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
 
31
#
 
32
 
 
33
TOPDIR = ..
 
34
include $(TOPDIR)/include/builddefs
 
35
 
 
36
LTCOMMAND = xfs_io
 
37
LSRCFILES = xfs_bmap.sh xfs_freeze.sh
 
38
HFILES = command.h input.h init.h io.h
 
39
CFILES = command.c input.c init.c \
 
40
        bmap.c file.c freeze.c fsync.c help.c \
 
41
        mmap.c open.c pread.c prealloc.c pwrite.c quit.c \
 
42
        truncate.c
 
43
 
 
44
ifeq ($(PKG_PLATFORM),linux)
 
45
CFILES += fadvise.c sendfile.c
 
46
LCFLAGS += -DHAVE_FADVISE -DHAVE_SENDFILE
 
47
else
 
48
LSRCFILES += fadvise.c sendfile.c
 
49
endif
 
50
 
 
51
ifneq ($(PKG_PLATFORM),irix)
 
52
CFILES += inject.c resblks.c shutdown.c
 
53
LCFLAGS += -DHAVE_INJECT -DHAVE_RESBLKS -DHAVE_SHUTDOWN
 
54
else
 
55
LSRCFILES += inject.c resblks.c shutdown.c
 
56
endif
 
57
 
 
58
ifeq ($(ENABLE_READLINE),yes)
 
59
LLDLIBS += $(LIBREADLINE)
 
60
CFLAGS += -DENABLE_READLINE
 
61
endif
 
62
 
 
63
ifeq ($(ENABLE_EDITLINE),yes)
 
64
LLDLIBS += $(LIBEDITLINE)
 
65
CFLAGS += -DENABLE_EDITLINE
 
66
endif
 
67
 
 
68
default: $(LTCOMMAND)
 
69
 
 
70
include $(BUILDRULES)
 
71
 
 
72
install: default
 
73
        $(INSTALL) -m 755 -d $(PKG_BIN_DIR)
 
74
        $(LTINSTALL) -m 755 $(LTCOMMAND) $(PKG_BIN_DIR)
 
75
        $(LTINSTALL) -m 755 xfs_bmap.sh $(PKG_BIN_DIR)/xfs_bmap
 
76
        $(LTINSTALL) -m 755 xfs_freeze.sh $(PKG_BIN_DIR)/xfs_freeze
 
77
install-dev: