1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00
lvm2/old-tests/format1/Makefile.in

44 lines
1.0 KiB
Makefile
Raw Normal View History

2001-10-08 09:50:00 +00: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 18:09:31 +00:00
read_vg_t.c \
write_vg_t.c \
2001-10-08 18:09:31 +00:00
pretty_print.c \
2001-10-09 08:58:52 +00:00
get_pvs_t.c \
2001-10-09 09:22:50 +00:00
read_pv_t.c \
get_vgs_t.c
2001-10-08 09:50:00 +00:00
2001-10-08 18:09:31 +00:00
TARGETS=\
read_vg_t \
write_vg_t \
2001-10-09 08:58:52 +00:00
get_pvs_t \
2001-10-09 09:22:50 +00:00
read_pv_t \
get_vgs_t
2001-10-08 09:50:00 +00:00
include ../../make.tmpl
2001-10-08 18:09:31 +00: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 18:09:31 +00: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 09:50:00 +00:00
2001-10-09 08:58:52 +00: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 09:22:50 +00: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