mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-30 17:18:21 +03:00
Add autoconf & makefile structure like LVM2.
This commit is contained in:
parent
c2d72fd402
commit
8f47e5794b
@ -1,56 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2001 Sistina Software (UK) Limited.
|
||||
#
|
||||
# This file is released under the LGPL.
|
||||
#
|
||||
|
||||
srcdir = .
|
||||
top_srcdir = ..
|
||||
VPATH = .
|
||||
SHELL = /bin/sh
|
||||
|
||||
CC = gcc
|
||||
RANLIB = ranlib
|
||||
SHELL = /bin/sh
|
||||
INSTALL = /usr/bin/install
|
||||
LN_S = ln -s
|
||||
|
||||
prefix = /usr
|
||||
libdir = ${prefix}/lib
|
||||
incdir = ${prefix}/include
|
||||
kernelsrcdir = /usr/src/linux
|
||||
|
||||
OWNER=root
|
||||
GROUP=root
|
||||
|
||||
INCLUDES=-I${kernelsrcdir}/include
|
||||
CFLAGS+=-Wall
|
||||
#CFLAGS+=-O2
|
||||
CFLAGS+=-g -fno-omit-frame-pointer
|
||||
#CFLAGS+=-pg
|
||||
#LD_FLAGS=-pg
|
||||
STRIP=
|
||||
#STRIP=-s
|
||||
|
||||
libdevmapper.so: libdm.o
|
||||
$(CC) -shared -o libdevmapper.so libdm.o
|
||||
|
||||
SUFFIXES=
|
||||
SUFFIXES=.c .o .so
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c $(INCLUDES) $(CFLAGS) $< -o $@
|
||||
|
||||
install: libdevmapper.so
|
||||
$(INSTALL) -o $(OWNER) -g $(GROUP) -m 555 $(STRIP) libdevmapper.so \
|
||||
$(libdir)
|
||||
$(INSTALL) -D -o $(OWNER) -g $(GROUP) -m 444 libdevmapper.h \
|
||||
$(incdir)/libdevmapper.h
|
||||
|
||||
clean:
|
||||
$(RM) libdevmapper.so libdm.o
|
||||
|
||||
distclean: clean
|
||||
|
||||
.PHONY: install test clean distclean
|
||||
|
24
libdm/Makefile.in
Normal file
24
libdm/Makefile.in
Normal file
@ -0,0 +1,24 @@
|
||||
#
|
||||
# Copyright (C) 2001 Sistina Software (UK) Limited.
|
||||
#
|
||||
# This file is released under the LGPL.
|
||||
#
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
SOURCES=libdevmapper.c
|
||||
|
||||
TARGETS=libdevmapper.so
|
||||
|
||||
include ../make.tmpl
|
||||
|
||||
install: libdevmapper.so
|
||||
$(INSTALL) -o $(OWNER) -g $(GROUP) -m 555 $(STRIP) libdevmapper.so \
|
||||
$(libdir)
|
||||
$(INSTALL) -o $(OWNER) -g $(GROUP) -m 444 libdevmapper.h \
|
||||
$(includedir)
|
||||
|
||||
.PHONY: install
|
||||
|
Loading…
Reference in New Issue
Block a user