1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00
lvm2/old-tests/format1/Makefile.in

44 lines
1.0 KiB
Makefile
Raw Normal View History

2001-10-08 13:50:00 +04:00
#
# Copyright (C) 2001 Sistina Software (UK) Limited
#
# This file is released under the GPL.
#
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
SOURCES=\
2001-10-08 22:09:31 +04:00
read_vg_t.c \
write_vg_t.c \
2001-10-08 22:09:31 +04:00
pretty_print.c \
2001-10-09 12:58:52 +04:00
get_pvs_t.c \
2001-10-09 13:22:50 +04:00
read_pv_t.c \
get_vgs_t.c
2001-10-08 13:50:00 +04:00
2001-10-08 22:09:31 +04:00
TARGETS=\
read_vg_t \
write_vg_t \
2001-10-09 12:58:52 +04:00
get_pvs_t \
2001-10-09 13:22:50 +04:00
read_pv_t \
get_vgs_t
2001-10-08 13:50:00 +04:00
include ../../make.tmpl
2001-10-08 22:09:31 +04:00
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
write_vg_t: write_vg_t.o pretty_print.o $(top_srcdir)/lib/liblvm.a
$(CC) -o write_vg_t write_vg_t.o pretty_print.o \
-L$(top_srcdir)/lib -llvm
2001-10-08 22:09:31 +04:00
get_pvs_t: get_pvs_t.o pretty_print.o $(top_srcdir)/lib/liblvm.a
$(CC) -o get_pvs_t get_pvs_t.o pretty_print.o -L$(top_srcdir)/lib -llvm
2001-10-08 13:50:00 +04:00
2001-10-09 12:58:52 +04:00
read_pv_t: read_pv_t.o pretty_print.o $(top_srcdir)/lib/liblvm.a
$(CC) -o read_pv_t read_pv_t.o pretty_print.o -L$(top_srcdir)/lib -llvm
2001-10-09 13:22:50 +04:00
get_vgs_t: get_vgs_t.o pretty_print.o $(top_srcdir)/lib/liblvm.a
$(CC) -o get_vgs_t get_vgs_t.o pretty_print.o -L$(top_srcdir)/lib -llvm