forked from open-hpi/openhpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
196 lines (168 loc) · 7.91 KB
/
Makefile.am
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#
# Copyright (c) 2003, Intel Corporation
# (C) Copyright IBM Corp 2003-2006
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or
# without modification, are permitted provided that the following
# conditions are met:
#
# Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the distribution.
#
# Neither the name of Intel Corporation nor the names
# of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#AUTOMAKE_OPTIONS = 1.8
TARFILE = $(PACKAGE_NAME)-$(VERSION).tar.gz
DESTDIR =
RPM = @RPM@
RPMFLAGS = -ba
EXTRA_DIST = openhpi.spec.in \
openhpi.conf.example \
simulation.data.example \
test_agent.data.example \
openhpiclient.conf.example \
README.csharp \
README.daemon \
README.java \
README.python \
README.windows \
Makefile.mingw32 \
Makefile.mingw32.def \
mingw32/config.h \
mingw32/openhpi.conf.example \
$(shell find $(srcdir)/include -name '*.h')
AUTOMAKE_OPTIONS = foreign
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.guess config.sub \
depcomp install-sh ltmain.sh missing mkinstalldirs config.h.in \
stamp-h.in cscope.files cscope.out $(distdir).tar.gz compile
MOSTLYCLEANFILES = tags
SUBDIRS = utils scripts @SSLDIR@ @SNMPDIR@ transport marshal baselib @ENABLED_DIRS@ plugins docs hpi_shell
DIST_SUBDIRS = utils scripts ssl snmp transport marshal baselib openhpid plugins docs clients cpp hpi_shell baselibs
DISTCHECK_CONFIGURE_FLAGS = --with-initdir=prefix
ALLSOURCES = \
$(shell find $(top_srcdir)/include -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/baselib -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/utils -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/openhpid -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print -o -name '*.cpp' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/plugins -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print -o -name '*.cpp' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/snmp -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/ssl -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/transport -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/marshal -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/clients -name .svn -o -name CVS -prune -o \
-name '*.[chS]' -print | grep -v '/t/') \
$(shell find $(top_srcdir)/cpp -name .svn -o -name CVS -prune -o \
-name '*.[ch]pp' -print | grep -v '/t/')
includedir=$(base_includedir)/openhpi
# These are the only headers that users should have any access to
include_HEADERS = $(top_srcdir)/include/SaHpi.h \
$(top_srcdir)/include/SaHpiXtca.h \
$(top_srcdir)/include/SaHpiAtca.h \
$(top_srcdir)/include/SaHpiBladeCenter.h \
$(top_srcdir)/include/oHpi.h \
$(top_srcdir)/utils/oh_utils.h \
$(top_srcdir)/utils/announcement_utils.h \
$(top_srcdir)/utils/rpt_utils.h \
$(top_srcdir)/utils/sahpi_enum_utils.h \
$(top_srcdir)/utils/sahpi_gcrypt_utils.h \
$(top_srcdir)/utils/sahpixtca_enum_utils.h \
$(top_srcdir)/utils/sahpiatca_enum_utils.h \
$(top_srcdir)/utils/sahpi_event_encode.h \
$(top_srcdir)/utils/sahpi_event_utils.h \
$(top_srcdir)/utils/sahpi_struct_utils.h \
$(top_srcdir)/utils/sahpi_time_utils.h \
$(top_srcdir)/utils/uid_utils.h \
$(top_srcdir)/utils/epath_utils.h \
$(top_srcdir)/utils/el_utils.h \
$(top_srcdir)/utils/event_utils.h \
$(top_srcdir)/clients/oh_clients.h
doc_DATA = README README.daemon COPYING ChangeLog
$(top_srcdir)/utils/sahpi_enum_utils.h:
make -C $(top_builddir)/utils sahpi_enum_utils.h
$(top_srcdir)/utils/sahpixtca_enum_utils.h:
make -C $(top_builddir)/utils sahpixtca_enum_utils.h
$(top_srcdir)/utils/sahpiatca_enum_utils.h:
make -C $(top_builddir)/utils sahpiatca_enum_utils.h
install-data-local: openhpi.pc openhpi.conf.example simulation.data.example openhpiclient.conf.example
$(mkinstalldirs) $(DESTDIR)$(libdir)/pkgconfig
$(INSTALL_DATA) openhpi.pc $(DESTDIR)$(libdir)/pkgconfig
$(mkinstalldirs) $(DESTDIR)$(VARPATH)
chmod 755 $(DESTDIR)$(VARPATH)
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/openhpi
if test ! -e $(DESTDIR)$(sysconfdir)/openhpi/openhpi.conf; then \
$(INSTALL) -m 600 $(top_srcdir)/openhpi.conf.example $(DESTDIR)$(sysconfdir)/openhpi/openhpi.conf; \
fi
if test ! -e $(DESTDIR)$(sysconfdir)/openhpi/simulation.data; then \
$(INSTALL) -m 600 $(top_srcdir)/simulation.data.example $(DESTDIR)$(sysconfdir)/openhpi/simulation.data; \
fi
if test ! -e $(DESTDIR)$(sysconfdir)/openhpi/openhpiclient.conf; then \
$(INSTALL_DATA) $(top_srcdir)/openhpiclient.conf.example $(DESTDIR)$(sysconfdir)/openhpi/openhpiclient.conf; \
fi
uninstall-local:
rm -f $(DESTDIR)$(libdir)/pkgconfig/openhpi.pc
if cmp $(top_srcdir)/openhpi.conf.example $(DESTDIR)$(sysconfdir)/openhpi/openhpi.conf; then \
rm -f $(DESTDIR)$(sysconfdir)/openhpi/openhpi.conf; \
fi
if cmp $(top_srcdir)/simulation.data.example $(DESTDIR)$(sysconfdir)/openhpi/simulation.data; then \
rm -f $(DESTDIR)$(sysconfdir)/openhpi/simulation.data; \
fi
if cmp $(top_srcdir)/openhpiclient.conf.example $(DESTDIR)$(sysconfdir)/openhpi/openhpiclient.conf; then \
rm -f $(DESTDIR)$(sysconfdir)/openhpi/openhpiclient.conf; \
fi
rpm: dist
rm -rf $(top_srcdir)/rpm
mkdir -p $(top_srcdir)/rpm/RPMS
mkdir $(top_srcdir)/rpm/SRPMS
mkdir $(top_srcdir)/rpm/BUILD
mkdir $(top_srcdir)/rpm/INSTALL
$(RPM) $(RPMFLAGS) $(PACKAGE_NAME).spec </dev/null;
dist-hook:
$(shell find $(distdir) -name openhpi.conf -exec chmod 600 "{}" ";")
distcheck-hook:
$(shell find $(distdir) -name openhpi.conf -exec chmod 600 "{}" ";")
documentation:
$(MAKE) -C docs
clean-local: am_config_clean-local
am_config_clean-local:
rm -fr $(PACKAGE)-*.tar.gz
rm -rf rpm
report:
$(MAKE) -C scripts/test report
tags: FORCE
@echo making tags
ctags $(ALLSOURCES)
TAGS: FORCE
@echo making TAGS
etags $(ALLSOURCES)
cscope: FORCE
@echo making cscope
echo "$(ALLSOURCES)" | sed -e 's/[ ]\+/\n/g' > cscope.files
cscope -b
.PHONY: FORCE