1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00
lvm2/tools/Makefile.in

97 lines
2.0 KiB
Makefile
Raw Normal View History

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