mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
32 lines
551 B
Makefile
32 lines
551 B
Makefile
#
|
|
# Copyright (C) 2002 Sistina Software (UK) Limited.
|
|
#
|
|
# This file is released under the LGPL.
|
|
#
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
SOURCES=\
|
|
disk-rep.c \
|
|
format1.c \
|
|
import-export.c \
|
|
import-extents.c \
|
|
layout.c \
|
|
lvm1-label.c \
|
|
vg_number.c
|
|
|
|
TARGETS=liblvm2format1.so
|
|
|
|
include ../../make.tmpl
|
|
|
|
|
|
install: libformat1.so
|
|
$(INSTALL) -D -o $(OWNER) -g $(GROUP) -m 555 $(STRIP) $< \
|
|
$(libdir)/liblvm2format1.so.$(LIB_VERSION)
|
|
$(LN_S) -f liblvm2format1.so.$(LIB_VERSION) $(libdir)/liblvm2format1.so
|
|
|
|
.PHONY: install
|
|
|