-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathltp-pounder21.make
84 lines (66 loc) · 2.6 KB
/
ltp-pounder21.make
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*-makefile-*-
#
# Copyright (C) 2008 by Robert Schwebel <[email protected]>
# (C) 2010 by Michael Olbrich <[email protected]>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#
#
# We provide this package
#
PACKAGES-$(PTXCONF_LTP_POUNDER21) += ltp-pounder21
#
# Paths and names
#
LTP_POUNDER21_VERSION := $(LTP_BASE_VERSION)
LTP_POUNDER21 := ltp-pounder21-$(LTP_BASE_VERSION)
LTP_POUNDER21_PKGDIR = $(PKGDIR)/$(LTP_POUNDER21)
# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------
$(STATEDIR)/ltp-pounder21.extract:
@$(call targetinfo)
@$(call touch)
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
$(STATEDIR)/ltp-pounder21.prepare:
@$(call targetinfo)
@$(call touch)
# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------
$(STATEDIR)/ltp-pounder21.compile:
@$(call targetinfo)
@cd $(LTP_BASE_DIR)/testcases/pounder21; $(LTP_ENV) $(MAKE) $(PARALLELMFLAGS)
@$(call touch)
# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------
$(STATEDIR)/ltp-pounder21.install:
@$(call targetinfo)
@mkdir -p $(LTP_POUNDER21_PKGDIR)/bin
@ln -sf $(LTP_POUNDER21_PKGDIR)/bin $(LTP_BASE_DIR)/testcases/bin
@cd $(LTP_BASE_DIR)/testcases/pounder21; $(LTP_ENV) $(MAKE) $(PARALLELMFLAGS) install
@rm $(LTP_BASE_DIR)/testcases/bin
@$(call touch)
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
$(STATEDIR)/ltp-pounder21.targetinstall:
@$(call targetinfo)
@$(call install_init, ltp-pounder21)
@$(call install_fixup, ltp-pounder21,PRIORITY,optional)
@$(call install_fixup, ltp-pounder21,SECTION,base)
@$(call install_fixup, ltp-pounder21,AUTHOR,"Robert Schwebel <[email protected]>")
@$(call install_fixup, ltp-pounder21,DESCRIPTION,missing)
@for file in `find $(LTP_POUNDER21_PKGDIR)/bin -type f`; do \
PER=`stat -c "%a" $$file` \
$(call install_copy, ltp-pounder21, 0, 0, $$PER, $$file, $(LTP_BASE_BIN_DIR)/$$file); \
done
@$(call install_finish, ltp-pounder21)
@$(call touch)
# vim: syntax=make