1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 20:25:52 +03:00
lvm2/lib/Makefile.in

31 lines
446 B
Makefile
Raw Normal View History

2001-09-21 16:37:43 +04:00
#
# Copyright (C) 2001 Sistina Software (UK) Limited
2001-09-21 16:37:43 +04:00
#
# This file is released under the GPL.
2001-09-21 16:37:43 +04:00
#
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
SOURCES=\
config/config.c \
datastruct/hash.c \
device/dev-cache.c \
device/dev-io.c \
2001-10-08 13:45:16 +04:00
format1/disk-rep.c \
2001-10-08 12:47:27 +04:00
format1/format1.c \
2001-09-21 16:37:43 +04:00
log/log.c \
mm/dbg_malloc.c \
mm/pool.c
2001-09-21 16:37:43 +04:00
TARGETS=liblvm.a
include ../make.tmpl
liblvm.a: $(OBJECTS)
$(RM) $@
$(AR) r $@ $(OBJECTS)
$(RANLIB) $@