2001-09-21 12:37:43 +00:00
#
# Copyright (C) 2001 Sistina Software
#
# This LVM library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This LVM library 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this LVM library; if not, write to the Free
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA 02111-1307, USA
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
SOURCES = \
2002-01-07 11:12:11 +00:00
archive.c \
2001-10-30 14:32:48 +00:00
lvchange.c \
2001-11-06 19:02:26 +00:00
lvcreate.c \
2001-11-08 16:15:58 +00:00
lvdisplay.c \
2001-11-09 22:01:04 +00:00
lvextend.c \
2001-10-12 10:32:06 +00:00
lvm.c \
lvmchange.c \
2002-02-05 14:31:57 +00:00
lvmdiskscan.c \
2001-11-08 16:15:58 +00:00
lvreduce.c \
2001-10-29 13:52:23 +00:00
lvremove.c \
2001-11-15 17:27:45 +00:00
lvrename.c \
2001-11-13 14:17:50 +00:00
lvresize.c \
2001-10-29 18:23:35 +00:00
lvscan.c \
2001-10-17 15:29:31 +00:00
pvchange.c \
2001-10-12 10:32:06 +00:00
pvcreate.c \
2001-10-18 16:55:19 +00:00
pvdisplay.c \
2001-10-16 18:07:54 +00:00
pvscan.c \
2001-10-12 10:32:06 +00:00
toollib.c \
2001-12-20 16:05:14 +00:00
vgcfgbackup.c \
2002-01-15 17:37:23 +00:00
vgcfgrestore.c \
2001-10-16 16:25:28 +00:00
vgchange.c \
2001-12-20 16:05:14 +00:00
vgck.c \
2001-10-12 12:21:43 +00:00
vgcreate.c \
2001-11-19 15:20:50 +00:00
vgdisplay.c \
2002-01-29 17:23:33 +00:00
vgexport.c \
2001-10-15 22:04:27 +00:00
vgextend.c \
2002-01-29 19:19:37 +00:00
vgimport.c \
2001-11-27 17:02:24 +00:00
vgmerge.c \
2001-10-12 10:32:06 +00:00
vgreduce.c \
vgremove.c \
2001-10-29 13:52:23 +00:00
vgrename.c \
2001-10-11 21:35:55 +00:00
vgscan.c
2001-09-21 12:37:43 +00:00
TARGETS = \
2001-12-03 20:23:53 +00:00
.commands \
2001-09-21 12:37:43 +00:00
lvm
i n c l u d e . . / m a k e . t m p l
2001-09-24 22:44:06 +00:00
lvm : $( OBJECTS ) $( top_srcdir ) /lib /liblvm .a
2002-01-18 19:38:19 +00:00
$( CC) -o lvm $( OBJECTS) $( LD_FLAGS) -L$( top_srcdir) /lib \
-L$( DESTDIR) /lib -llvm -ldevmapper $( LIBS)
2001-09-21 12:37:43 +00:00
2002-01-31 20:15:26 +00:00
.commands : commands .h cmdnames .h
$( CC) -E -P cmdnames.h | grep -v help > .commands
2001-09-21 12:37:43 +00:00
2001-12-03 20:23:53 +00:00
install : $( TARGETS )
2002-01-02 14:23:10 +00:00
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 555 $( STRIP) lvm \
2001-12-03 20:23:53 +00:00
$( sbindir) /lvm
2002-01-02 14:23:10 +00:00
@echo Creating symbolic links for individual commands in $( sbindir)
@( \
2001-12-03 20:23:53 +00:00
for v in ` cat .commands` ; do \
cd $( sbindir) ; \
$( LN_S) -f lvm $$ v; \
done ; \
)
2001-09-21 12:37:43 +00:00