]> git.ipfire.org Git - ipfire-3.x.git/blame - lfs/bootutils
s/TARGET/OBJECT/g
[ipfire-3.x.git] / lfs / bootutils
CommitLineData
e7d31cff
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
f9461a72 4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
e7d31cff
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27PKG_NAME = bootutils
28VER = 0.0.8
f9461a72 29PKG_VER = 0
e7d31cff
MT
30
31THISAPP = $(PKG_NAME)-$(VER)
32DL_FILE = $(THISAPP).tar.bz2
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
6679675b 35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
e7d31cff 36
f9461a72
MT
37MAINTAINER =
38GROUP = System/Tools
39EXTRA = no
40DEBUG = no
41DEPS =
42
43URL = http://freshmeat.net/projects/bootutils/
44LICENSE = GPLv2+
45SHORT_DESC = BootUtils are utilities to facilitate booting.
46
47define LONG_DESC
48 BootUtils is a collection of utilities to facilitate booting of Linux \
49 2.6-based systems.
50endef
51
e7d31cff
MT
52###############################################################################
53# Top-level Rules
54###############################################################################
55
56objects = $(DL_FILE)
57
3f9ecf48
MT
58download: $(objects)
59
6679675b 60install: $(OBJECT)
e7d31cff 61
3f9ecf48
MT
62package:
63 @$(DO_PACKAGE)
e7d31cff 64
3f9ecf48 65$(objects):
e7d31cff
MT
66 @$(LOAD)
67
68###############################################################################
69# Installation Details
70###############################################################################
71
6679675b 72$(OBJECT): $(objects)
e7d31cff 73 @$(PREBUILD)
f9461a72 74 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
e7d31cff
MT
75 cd $(DIR_APP) && ./configure --prefix=""
76 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
77 cd $(DIR_APP) && make install
78 @rm -rf $(DIR_APP)
79 @$(POSTBUILD)