]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/stress
Early spring clean: Remove trailing whitespaces, and correct licence headers
[people/pmueller/ipfire-2.x.git] / lfs / stress
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
4 ###############################################################################
5
6 ###############################################################################
7 # Definitions
8 ###############################################################################
9
10 include Config
11
12 SUMMARY = Tool to load and stress a computer
13
14 VER = 1.0.4
15
16 THISAPP = stress-$(VER)
17 DL_FILE = $(THISAPP).tar.gz
18 DL_FROM = $(URL_IPFIRE)
19 DIR_APP = $(DIR_SRC)/$(THISAPP)
20 TARGET = $(DIR_INFO)/$(THISAPP)
21 PROG = stress
22 PAK_VER = 1
23
24 DEPS =
25
26 SERVICES =
27
28 ###############################################################################
29 # Top-level Rules
30 ###############################################################################
31
32 objects = $(DL_FILE)
33
34 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
35
36 $(DL_FILE)_MD5 = a607afa695a511765b40993a64c6e2f4
37
38 install : $(TARGET)
39
40 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
41
42 download :$(patsubst %,$(DIR_DL)/%,$(objects))
43
44 md5 : $(subst %,%_MD5,$(objects))
45
46 dist:
47 @$(PAK)
48
49 ###############################################################################
50 # Downloading, checking, md5sum
51 ###############################################################################
52
53 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
54 @$(CHECK)
55
56 $(patsubst %,$(DIR_DL)/%,$(objects)) :
57 @$(LOAD)
58
59 $(subst %,%_MD5,$(objects)) :
60 @$(MD5)
61
62 ###############################################################################
63 # Installation Details
64 ###############################################################################
65
66 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
67 @$(PREBUILD)
68 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
69 cd $(DIR_APP) && ./configure --prefix=/usr
70 cd $(DIR_APP) && make $(MAKETUNING)
71 cd $(DIR_APP) && make install
72 @rm -rf $(DIR_APP)
73 @$(POSTBUILD)