1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00
lvm2/lib/Makefile

24 lines
264 B
Makefile
Raw Normal View History

CFLAGS = -I.
SRC= \
config/config.c \
dev-mgr/dev-manager.c \
dev-mgr/hash.c \
log/log.c \
mm/pool.c \
mm/dbg_malloc.c
OBJ=${SRC:.c=.o}
TARGET=liblvm.a
all: ${TARGET}
liblvm.a: $(OBJ)
rm -f $@
ar r $@ $(OBJ)
ranlib $@
clean:
rm -f ${OBJ} ${TARGET}