mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
tidy relative paths in makefile includes
This commit is contained in:
parent
1a9ea74d2d
commit
b7d0982ae7
@ -1,5 +1,6 @@
|
||||
Version 2.00.17 -
|
||||
=============================
|
||||
Tidy relative paths in makefile includes.
|
||||
fsadm support for fsck and resizing - needs testing.
|
||||
Add read-only GFS pool support.
|
||||
Add lvm2create_initrd script from http://poochiereds.net/svn/lvm2/
|
||||
|
@ -18,7 +18,7 @@ VPATH = @srcdir@
|
||||
CONFSRC=example.conf
|
||||
CONFDEST=lvm.conf
|
||||
|
||||
include ../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
install:
|
||||
@if [ ! -e $(confdir)/$(CONFDEST) ]; then \
|
||||
|
@ -136,5 +136,5 @@ LIB_STATIC = liblvm.a
|
||||
|
||||
$(SUBDIRS): $(LIB_STATIC)
|
||||
|
||||
include ../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
|
@ -27,7 +27,7 @@ SOURCES =\
|
||||
|
||||
LIB_SHARED = liblvm2format1.so
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
.PHONY: install
|
||||
|
||||
|
@ -24,7 +24,7 @@ SOURCES =\
|
||||
|
||||
LIB_SHARED = liblvm2formatpool.so
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
.PHONY: install
|
||||
|
||||
|
@ -20,7 +20,7 @@ SOURCES = mirrored.c
|
||||
|
||||
LIB_SHARED = liblvm2mirror.so
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
.PHONY: install
|
||||
|
||||
|
@ -20,7 +20,7 @@ SOURCES = snapshot.c
|
||||
|
||||
LIB_SHARED = liblvm2snapshot.so
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
.PHONY: install
|
||||
|
||||
|
@ -27,7 +27,7 @@ MAN8=lvchange.8 lvcreate.8 lvdisplay.8 lvextend.8 lvm.8 lvmchange.8 \
|
||||
MAN5DIR=${mandir}/man5
|
||||
MAN8DIR=${mandir}/man8
|
||||
|
||||
include ../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
install:
|
||||
@echo "Installing $(MAN8) in $(MAN8DIR)"
|
||||
|
@ -21,7 +21,7 @@ SOURCES=\
|
||||
|
||||
TARGETS=dev_cache_t
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
dev_cache_t: dev_cache_t.o $(top_srcdir)/lib/liblvm.a
|
||||
$(CC) -o dev_cache_t dev_cache_t.o -L$(top_srcdir)/lib -llvm
|
||||
|
@ -24,7 +24,7 @@ TARGETS=\
|
||||
rfilter_t \
|
||||
pfilter_t
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
rfilter_t: rfilter_t.o $(top_srcdir)/lib/liblvm.a
|
||||
$(CC) -o rfilter_t rfilter_t.o -L$(top_srcdir)/lib -llvm
|
||||
|
@ -31,7 +31,7 @@ TARGETS=\
|
||||
read_pv_t \
|
||||
get_vgs_t
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
read_vg_t: read_vg_t.o pretty_print.o $(top_srcdir)/lib/liblvm.a
|
||||
$(CC) -o read_vg_t read_vg_t.o pretty_print.o -L$(top_srcdir)/lib -llvm
|
||||
|
@ -21,7 +21,7 @@ SOURCES=\
|
||||
|
||||
TARGETS=dbg_malloc_t
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
dbg_malloc_t: dbg_malloc_t.o
|
||||
$(CC) $(CFLAGS) -o dbg_malloc_t dbg_malloc_t.o \
|
||||
|
@ -24,7 +24,7 @@ TARGETS=\
|
||||
parse_t \
|
||||
matcher_t
|
||||
|
||||
include ../../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
parse_t: parse_t.o $(top_srcdir)/lib/liblvm.a
|
||||
$(CC) -o parse_t parse_t.o -L$(top_srcdir)/lib -llvm
|
||||
|
@ -19,7 +19,7 @@ LANGS=de
|
||||
|
||||
TARGETS=$(LANGS:%=%.mo)
|
||||
|
||||
include ../make.tmpl
|
||||
include $(top_srcdir)/make.tmpl
|
||||
|
||||
install: $(TARGETS)
|
||||
@echo Installing translation files in $(localedir)
|
||||
|
Loading…
Reference in New Issue
Block a user