2001-09-21 16:37:43 +04: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 14:12:11 +03:00
archive.c \
2001-10-30 17:32:48 +03:00
lvchange.c \
2001-11-06 22:02:26 +03:00
lvcreate.c \
2001-11-08 19:15:58 +03:00
lvdisplay.c \
2001-11-10 01:01:04 +03:00
lvextend.c \
2001-10-12 14:32:06 +04:00
lvm.c \
lvmchange.c \
2002-02-05 17:31:57 +03:00
lvmdiskscan.c \
2001-11-08 19:15:58 +03:00
lvreduce.c \
2001-10-29 16:52:23 +03:00
lvremove.c \
2001-11-15 20:27:45 +03:00
lvrename.c \
2001-11-13 17:17:50 +03:00
lvresize.c \
2001-10-29 21:23:35 +03:00
lvscan.c \
2001-10-17 19:29:31 +04:00
pvchange.c \
2001-10-12 14:32:06 +04:00
pvcreate.c \
2001-10-18 20:55:19 +04:00
pvdisplay.c \
2002-11-18 17:04:08 +03:00
pvremove.c \
2001-10-16 22:07:54 +04:00
pvscan.c \
2002-12-12 23:55:49 +03:00
report.c \
2001-10-12 14:32:06 +04:00
toollib.c \
2001-12-20 19:05:14 +03:00
vgcfgbackup.c \
2002-01-15 20:37:23 +03:00
vgcfgrestore.c \
2001-10-16 20:25:28 +04:00
vgchange.c \
2001-12-20 19:05:14 +03:00
vgck.c \
2001-10-12 16:21:43 +04:00
vgcreate.c \
2002-11-18 17:04:08 +03:00
vgconvert.c \
2001-11-19 18:20:50 +03:00
vgdisplay.c \
2002-01-29 20:23:33 +03:00
vgexport.c \
2001-10-16 02:04:27 +04:00
vgextend.c \
2002-01-29 22:19:37 +03:00
vgimport.c \
2001-11-27 20:02:24 +03:00
vgmerge.c \
2001-10-12 14:32:06 +04:00
vgreduce.c \
vgremove.c \
2001-10-29 16:52:23 +03:00
vgrename.c \
2002-05-31 23:30:51 +04:00
vgscan.c \
vgsplit.c
2001-09-21 16:37:43 +04:00
TARGETS = \
2001-12-03 23:23:53 +03:00
.commands \
2001-09-21 16:37:43 +04:00
lvm
2003-01-09 01:44:07 +03:00
LVMLIBS = -llvm
i f e q ( "@DEVMAPPER@" , "yes" )
LVMLIBS += -ldevmapper
e n d i f
2001-09-21 16:37:43 +04:00
i n c l u d e . . / m a k e . t m p l
2003-04-15 17:24:42 +04:00
i f e q ( "@STATIC_LINK@" , "no" )
LVMLIBS += -rdynamic
e n d i f
2001-09-25 02:44:06 +04:00
lvm : $( OBJECTS ) $( top_srcdir ) /lib /liblvm .a
2002-01-18 22:38:19 +03:00
$( CC) -o lvm $( OBJECTS) $( LD_FLAGS) -L$( top_srcdir) /lib \
2003-04-15 17:24:42 +04:00
-L$( DESTDIR) /lib $( LVMLIBS) $( LIBS)
2001-09-21 16:37:43 +04:00
2002-12-12 23:55:49 +03:00
.commands : commands .h cmdnames .h Makefile
2003-04-15 17:24:42 +04:00
$( CC) -E -P cmdnames.h 2> /dev/null | \
egrep -v '^ *(|#.*|help|version) *$$' > .commands
2001-09-21 16:37:43 +04:00
2001-12-03 23:23:53 +03:00
install : $( TARGETS )
2002-01-02 17:23:10 +03:00
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 555 $( STRIP) lvm \
2001-12-03 23:23:53 +03:00
$( sbindir) /lvm
2002-01-02 17:23:10 +03:00
@echo Creating symbolic links for individual commands in $( sbindir)
@( \
2001-12-03 23:23:53 +03:00
for v in ` cat .commands` ; do \
cd $( sbindir) ; \
$( LN_S) -f lvm $$ v; \
done ; \
)
2001-09-21 16:37:43 +04:00