mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-07 21:18:59 +03:00
27 lines
464 B
Makefile
27 lines
464 B
Makefile
|
#
|
||
|
# Copyright (C) 2001 Sistina Software (UK) Limited
|
||
|
#
|
||
|
# This file is released under the GPL.
|
||
|
#
|
||
|
|
||
|
srcdir = @srcdir@
|
||
|
top_srcdir = @top_srcdir@
|
||
|
VPATH = @srcdir@
|
||
|
|
||
|
SOURCES=\
|
||
|
parse_t.c \
|
||
|
matcher_t.c
|
||
|
|
||
|
TARGETS=\
|
||
|
parse_t \
|
||
|
matcher_t
|
||
|
|
||
|
include ../../make.tmpl
|
||
|
|
||
|
parse_t: parse_t.o $(top_srcdir)/lib/liblvm.a
|
||
|
$(CC) -o parse_t parse_t.o -L$(top_srcdir)/lib -llvm
|
||
|
|
||
|
matcher_t: matcher_t.o $(top_srcdir)/lib/liblvm.a
|
||
|
$(CC) -o matcher_t matcher_t.o -L$(top_srcdir)/lib -llvm
|
||
|
|