mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
25 lines
421 B
Makefile
25 lines
421 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=\
|
|
dbg_malloc_t.c
|
|
|
|
TARGETS=dbg_malloc_t
|
|
|
|
include ../../make.tmpl
|
|
|
|
dbg_malloc_t: dbg_malloc_t.o
|
|
$(CC) $(CFLAGS) -o dbg_malloc_t dbg_malloc_t.o \
|
|
-L$(top_srcdir)/lib -llvm
|
|
|
|
pool_t: pool_t.o
|
|
$(CC) $(CFLAGS) -o pool_t pool_t.o -L$(top_srcdir)/lib -llvm
|
|
|