mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
5f16718b19
constructor if you want it to ignore the existing cache and check every device again (eg, vgscan, pvscan).
27 lines
476 B
Makefile
27 lines
476 B
Makefile
#
|
|
# Copyright (C) 2001 Sistina Software (UK) Limited
|
|
#
|
|
# This file is released under the GPL.
|
|
#
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
SOURCES=\
|
|
rfilter_t.c \
|
|
pfilter_t.c
|
|
|
|
TARGETS=\
|
|
rfilter_t \
|
|
pfilter_t
|
|
|
|
include ../../make.tmpl
|
|
|
|
rfilter_t: rfilter_t.o $(top_srcdir)/lib/liblvm.a
|
|
$(CC) -o rfilter_t rfilter_t.o -L$(top_srcdir)/lib -llvm
|
|
|
|
pfilter_t: pfilter_t.o $(top_srcdir)/lib/liblvm.a
|
|
$(CC) -o pfilter_t pfilter_t.o -L$(top_srcdir)/lib -llvm
|
|
|