| 1 |
#
|
| 2 |
# Makefile
|
| 3 |
#
|
| 4 |
# Copyright (C) 1997 - 2001 Heinz Mauelshagen, Sistina Software
|
| 5 |
#
|
| 6 |
# February 1997
|
| 7 |
# May 1998
|
| 8 |
# February 2001
|
| 9 |
#
|
| 10 |
# lvm is free software; you can redistribute it and/or modify
|
| 11 |
# it under the terms of the GNU General Public License as published by
|
| 12 |
# the Free Software Foundation; either version 2, or (at your option)
|
| 13 |
# any later version.
|
| 14 |
#
|
| 15 |
# lvm is distributed in the hope that it will be useful,
|
| 16 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 17 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 18 |
# GNU General Public License for more details.
|
| 19 |
#
|
| 20 |
# You should have received a copy of the GNU General Public License
|
| 21 |
# along with GNU CC; see the file COPYING. If not, write to
|
| 22 |
# the Free Software Foundation, 59 Temple Place - Suite 330,
|
| 23 |
# Boston, MA 02111-1307, USA.
|
| 24 |
#
|
| 25 |
#
|
| 26 |
|
| 27 |
@SET_MAKE@
|
| 28 |
|
| 29 |
srcdir = @srcdir@
|
| 30 |
VPATH = @srcdir@
|
| 31 |
|
| 32 |
SUBDIRS = tools .
|
| 33 |
|
| 34 |
include make.tmpl
|
| 35 |
|
| 36 |
all_this: .touchbuilt
|
| 37 |
@cat @top_srcdir@/lvm_input_msg
|
| 38 |
|
| 39 |
clean_this:
|
| 40 |
rm -f .touchbuilt
|
| 41 |
|
| 42 |
distclean: clean
|
| 43 |
$(MAKE) -C tools distclean
|
| 44 |
$(MAKE) -C PATCHES distclean
|
| 45 |
rm -f config.cache config.log config.status
|
| 46 |
rm -f Makefile make.tmpl
|
| 47 |
|
| 48 |
.touchbuilt:
|
| 49 |
@echo
|
| 50 |
@echo "**********************************"
|
| 51 |
@echo "There were errors in your compile."
|
| 52 |
@echo "**********************************"
|
| 53 |
@echo
|
| 54 |
@exit 1
|
| 55 |
|
| 56 |
install_this:
|
| 57 |
|
| 58 |
remove_this:
|
| 59 |
|