GUI CSS: Deployed view styles for layouts (CMK-1171)
[check_mk.git] / Makefile
blobd8c9296ef6e65cf4b2cc959aca0874a46ebb5aae
1 # +------------------------------------------------------------------+
2 # | ____ _ _ __ __ _ __ |
3 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
4 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
5 # | | |___| | | | __/ (__| < | | | | . \ |
6 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
7 # | |
8 # | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
9 # +------------------------------------------------------------------+
11 # This file is part of Check_MK.
12 # The official homepage is at http://mathias-kettner.de/check_mk.
14 # check_mk is free software; you can redistribute it and/or modify it
15 # under the terms of the GNU General Public License as published by
16 # the Free Software Foundation in version 2. check_mk is distributed
17 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
18 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
19 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
20 # tails. You should have received a copy of the GNU General Public
21 # License along with GNU Make; see the file COPYING. If not, write
22 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23 # Boston, MA 02110-1301 USA.
26 include defines.make
28 NAME := check_mk
29 PREFIX := /usr
30 BINDIR := $(PREFIX)/bin
31 CONFDIR := /etc/$(NAME)
32 LIBDIR := $(PREFIX)/lib/$(NAME)
33 DISTNAME := $(NAME)-$(VERSION)
34 DIST_ARCHIVE := check-mk-$(EDITION)-$(OMD_VERSION).tar.gz
35 TAROPTS := --owner=root --group=root --exclude=.svn --exclude=*~ \
36 --exclude=.gitignore --exclude=*.swp --exclude=.f12
37 # We could add clang's -Wshorten-64-to-32 and g++'c/clang's -Wsign-conversion here.
38 CXX_FLAGS := -g -O3 -Wall -Wextra
39 CLANG_VERSION := 7
40 CLANG_FORMAT := clang-format-$(CLANG_VERSION)
41 CLANG_TIDY := clang-tidy-$(CLANG_VERSION)
42 export RUN_CLANG_TIDY := run-clang-tidy-$(CLANG_VERSION).py
43 SCAN_BUILD := scan-build-$(CLANG_VERSION)
44 export CPPCHECK := cppcheck
45 export DOXYGEN := doxygen
46 export IWYU_TOOL := iwyu_tool
47 PIPENV := PIPENV_NO_INHERIT=true PIPENV_VENV_IN_PROJECT=true pipenv
49 # The Bear versions have a slightly tragic history: Due to the clang bug
50 # https://llvm.org/bugs/show_bug.cgi?id=24710 we need absolute paths in our
51 # compilation database. Furthermore, gcc and clang have slightly different
52 # behavior regarding include paths when the -I flag contains a relative path and
53 # symlinks are involved, so this is yet another reason to use absolute paths.
55 # Consequently, we upstreamed a fix for this to the Bear project, see
56 # https://github.com/rizsotto/Bear/commit/fb1645de9. This fix lived happily in
57 # the Bear releases 2.1.4, 2.1.5, and 2.2.0, but after that, some "improvements"
58 # broke the fix again. :-/ Until a new fix has been upstreamed, make sure that
59 # that you use the right Bear.
61 # To install a working version locally, just do:
62 # git clone https://github.com/rizsotto/Bear.git && cd Bear && git checkout 2.2.0 && cmake -DCMAKE_INSTALL_PREFIX=$HOME/local/Bear-2.2.0 && make install
63 # and put $HOME/local/Bear-2.2.0/bin into your PATH or set the make variable
64 # below accordingly.
65 export BEAR := bear
67 M4_DEPS := $(wildcard m4/*) configure.ac
68 CONFIGURE_DEPS := $(M4_DEPS) aclocal.m4
69 CONFIG_DEPS := ar-lib compile config.guess config.sub install-sh missing depcomp configure
70 DIST_DEPS := $(CONFIG_DEPS) \
71 omd/packages/openhardwaremonitor/OpenHardwareMonitorCLI.exe \
72 omd/packages/openhardwaremonitor/OpenHardwareMonitorLib.dll
75 LIVESTATUS_SOURCES := Makefile.am api/c++/{Makefile,*.{h,cc}} api/perl/* \
76 api/python/{README,*.py} {nagios,nagios4}/{README,*.h} \
77 src/{Makefile.am,*.{cc,h}} standalone/config_files.m4
79 FILES_TO_FORMAT := $(wildcard $(addprefix agents/,*.cc *.c *.h)) \
80 $(wildcard $(addprefix agents/windows/,*.cc *.h)) \
81 $(wildcard $(addprefix agents/windows/sections/,*.cc *.h)) \
82 $(wildcard $(addprefix agents/windows/test/,*.cc *.h)) \
83 $(wildcard $(addprefix agents/windows/test/sections,*.cc *.h)) \
84 $(wildcard $(addprefix livestatus/api/c++/,*.cc *.h)) \
85 $(wildcard $(addprefix livestatus/src/,*.cc *.h)) \
86 $(wildcard $(addprefix livestatus/src/test/,*.cc *.h)) \
87 $(wildcard $(addprefix bin/,*.cc *.c *.h)) \
88 $(wildcard $(addprefix enterprise/core/src/,*.cc *.h)) \
89 $(wildcard $(addprefix enterprise/core/src/checkhelper/,*.cc *.h)) \
90 $(wildcard $(addprefix enterprise/core/src/test/,*.cc *.h))
92 WERKS := $(wildcard .werks/[0-9]*)
94 JAVASCRIPT_SOURCES := $(filter-out %_min.js,$(wildcard $(addsuffix /web/htdocs/js/*.js,. enterprise managed))) $(wildcard web/htdocs/js/modules/*.js)
96 PNG_FILES := $(wildcard $(addsuffix /*.png,web/htdocs/images web/htdocs/images/icons enterprise/web/htdocs/images enterprise/web/htdocs/images/icons managed/web/htdocs/images managed/web/htdocs/images/icons))
99 .PHONY: all analyze build check check-binaries check-permissions \
100 check-version clean compile-neb-cmc cppcheck dist documentation format format-c format-python \
101 GTAGS headers help install iwyu mrproper \
102 optimize-images packages setup setversion tidy version \
103 am--refresh skel
105 help:
106 @echo "setup --> Prepare system for development and building"
107 @echo "make dist --> Create source tgz for later building of rpm/deb and livestatus tgz"
108 @echo "make rpm --> Create rpm package"
109 @echo "make deb --> Create deb package"
110 @echo "make cma --> Create cma package"
111 @echo "make version --> Switch to new version"
113 rpm:
114 $(MAKE) -C omd rpm
116 deb:
117 $(MAKE) -C omd deb
119 cma:
120 $(MAKE) -C omd cma
122 check: check-permissions check-binaries check-version
124 check-permissions:
125 @echo -n "Checking permissions... with find -not -perm -444..." && [ -z "$$(find -not -perm -444)" ] && echo OK
127 check-binaries:
128 @if [ -z "$(SKIP_SANITY_CHECKS)" ]; then \
129 echo -n "Checking precompiled binaries..." && file agents/waitmax | grep 32-bit >/dev/null && echo OK ; \
132 check-version:
133 @sed -n 1p ChangeLog | fgrep -qx '$(VERSION):' || { \
134 echo "Version $(VERSION) not listed at top of ChangeLog!" ; \
135 false ; }
137 # Is executed by our build environment from a "git archive" snapshot and during
138 # RPM building to create the source tar.gz for the RPM build process.
139 # Would use --exclude-vcs-ignores but that's available from tar 1.29 which
140 # is currently not used by most distros
141 # Would also use --exclude-vcs, but this is also not available
142 # And --transform is also missing ...
143 dist: $(DISTNAME).tar.gz config.h.in $(DIST_DEPS)
144 ifeq ($(ENTERPRISE),yes)
145 $(MAKE) -C enterprise agents/plugins/cmk-update-agent
146 $(MAKE) -C enterprise agents/plugins/cmk-update-agent-32
147 $(MAKE) -C enterprise agents/windows/plugins/cmk-update-agent.exe
148 endif
149 set -e -o pipefail ; EXCLUDES= ; \
150 if [ -d .git ]; then \
151 git rev-parse --short HEAD > COMMIT ; \
152 for X in $$(git ls-files --directory --others -i --exclude-standard) ; do \
153 if [[ $$X != aclocal.m4 && $$X != config.h.in && ! "$(DIST_DEPS)" =~ (^|[[:space:]])$$X($$|[[:space:]]) && $$X != $(DISTNAME).tar.gz && $$X != omd/packages/mk-livestatus/mk-livestatus-$(VERSION).tar.gz && $$X != livestatus/* && $$X != enterprise/* ]]; then \
154 EXCLUDES+=" --exclude $${X%*/}" ; \
155 fi ; \
156 done ; \
157 else \
158 for F in $(DIST_ARCHIVE) enterprise/agents/plugins/{build,build-32,src} agents/windows/{build64,build} enterprise/agents/winbuild; do \
159 EXCLUDES+=" --exclude $$F" ; \
160 done ; \
161 fi ; \
162 if [ -d check-mk-$(EDITION)-$(OMD_VERSION) ]; then \
163 rm -rf check-mk-$(EDITION)-$(OMD_VERSION) ; \
164 fi ; \
165 mkdir check-mk-$(EDITION)-$(OMD_VERSION) ; \
166 tar -c --wildcards \
167 $(TAROPTS) \
168 --exclude check-mk-$(EDITION)-$(OMD_VERSION) \
169 --exclude .git \
170 --exclude .gitignore \
171 --exclude .gitmodules \
172 --exclude .gitattributes \
173 $$EXCLUDES \
174 * .werks .clang* | tar x -C check-mk-$(EDITION)-$(OMD_VERSION)
175 if [ -f COMMIT ]; then \
176 rm COMMIT ; \
178 tar -cz --wildcards -f $(DIST_ARCHIVE) \
179 $(TAROPTS) \
180 check-mk-$(EDITION)-$(OMD_VERSION)
181 rm -rf check-mk-$(EDITION)-$(OMD_VERSION)
183 # This tar file is only used by "omd/packages/check_mk/Makefile"
184 $(DISTNAME).tar.gz: .venv omd/packages/mk-livestatus/mk-livestatus-$(VERSION).tar.gz .werks/werks web/htdocs/js/main_min.js web/htdocs/js/mobile_min.js web/htdocs/js/side_min.js web/htdocs/themes/facelift/theme.css ChangeLog web/htdocs/themes/classic/theme.css
185 @echo "Making $(DISTNAME)"
186 rm -rf $(DISTNAME)
187 mkdir -p $(DISTNAME)
188 $(MAKE) -C agents build
189 tar cf $(DISTNAME)/bin.tar $(TAROPTS) -C bin $$(cd bin ; ls)
190 tar rf $(DISTNAME)/bin.tar $(TAROPTS) -C agents/windows/msibuild msi-update
191 tar rf $(DISTNAME)/bin.tar $(TAROPTS) -C agents/windows/msibuild msi-update-legacy
192 gzip $(DISTNAME)/bin.tar
193 $(PIPENV) run python -m compileall cmk ; \
194 tar czf $(DISTNAME)/lib.tar.gz $(TAROPTS) \
195 --exclude "cee" \
196 --exclude "cee.py*" \
197 --exclude "cme" \
198 --exclude "cme.py*" \
199 cmk/* ; \
200 rm cmk/*.pyc
201 $(PIPENV) run python -m compileall cmk_base ; \
202 tar czf $(DISTNAME)/base.tar.gz \
203 $(TAROPTS) \
204 --exclude "cee" \
205 --exclude "cee.py*" \
206 --exclude "cme" \
207 --exclude "cme.py*" \
208 cmk_base/* ; \
209 rm cmk_base/*.pyc
210 tar czf $(DISTNAME)/werks.tar.gz $(TAROPTS) -C .werks werks
211 tar czf $(DISTNAME)/checks.tar.gz $(TAROPTS) -C checks $$(cd checks ; ls)
212 tar czf $(DISTNAME)/active_checks.tar.gz $(TAROPTS) -C active_checks $$(cd active_checks ; ls)
213 tar czf $(DISTNAME)/notifications.tar.gz $(TAROPTS) -C notifications $$(cd notifications ; ls)
214 tar czf $(DISTNAME)/inventory.tar.gz $(TAROPTS) -C inventory $$(cd inventory ; ls)
215 tar czf $(DISTNAME)/checkman.tar.gz $(TAROPTS) -C checkman $$(cd checkman ; ls)
216 tar czf $(DISTNAME)/web.tar.gz $(TAROPTS) -C web htdocs app
218 tar xzf omd/packages/mk-livestatus/mk-livestatus-$(VERSION).tar.gz
219 tar czf $(DISTNAME)/livestatus.tar.gz $(TAROPTS) -C mk-livestatus-$(VERSION) $$(cd mk-livestatus-$(VERSION) ; ls -A )
220 rm -rf mk-livestatus-$(VERSION)
222 tar czf $(DISTNAME)/pnp-templates.tar.gz $(TAROPTS) -C pnp-templates $$(cd pnp-templates ; ls *.php)
223 tar cf $(DISTNAME)/doc.tar $(TAROPTS) -C doc $$(cd doc ; ls)
224 tar rf $(DISTNAME)/doc.tar $(TAROPTS) COPYING AUTHORS ChangeLog
225 tar rf $(DISTNAME)/doc.tar $(TAROPTS) livestatus/api --exclude "*~" --exclude "*.pyc" --exclude ".gitignore" --exclude .f12
226 gzip $(DISTNAME)/doc.tar
228 cd agents ; tar czf ../$(DISTNAME)/agents.tar.gz $(TAROPTS) \
229 --exclude check_mk_agent.spec \
230 --exclude special/lib \
231 cfg_examples \
232 plugins \
233 sap \
234 special \
235 z_os \
236 check-mk-agent_*.deb \
237 check-mk-agent-*.rpm \
238 check_mk_agent.* \
239 check_mk_caching_agent.linux \
240 CONTENTS \
241 mk-job* \
242 waitmax \
243 windows/cfg_examples \
244 windows/check_mk_agent*.{exe,msi} \
245 windows/check_mk.example.ini \
246 windows/CONTENTS \
247 windows/mrpe \
248 windows/plugins
249 cd $(DISTNAME) ; ../scripts/make_package_info $(VERSION) > package_info
250 install -m 755 scripts/*.{sh,py} $(DISTNAME)
251 install -m 644 COPYING AUTHORS ChangeLog standalone.make $(DISTNAME)
252 echo "$(VERSION)" > $(DISTNAME)/VERSION
253 tar czf $(DISTNAME).tar.gz $(TAROPTS) $(DISTNAME)
254 rm -rf $(DISTNAME)
256 @echo "=============================================================================="
257 @echo " FINISHED. "
258 @echo "=============================================================================="
260 omd/packages/openhardwaremonitor/OpenHardwareMonitorCLI.exe:
261 $(MAKE) -C omd openhardwaremonitor-dist
263 omd/packages/openhardwaremonitor/OpenHardwareMonitorLib.dll: omd/packages/openhardwaremonitor/OpenHardwareMonitorCLI.exe
265 .werks/werks: .venv $(WERKS)
266 PYTHONPATH=${PYTHONPATH}:$(REPO_PATH) $(PIPENV) run scripts/precompile-werks.py .werks .werks/werks cre
268 ChangeLog: .venv .werks/werks
269 PYTHONPATH=${PYTHONPATH}:$(REPO_PATH) $(PIPENV) run scripts/create-changelog.py ChangeLog .werks/werks
271 packages:
272 $(MAKE) -C agents packages
274 # NOTE: Old tar versions (e.g. on CentOS 5) don't have the --transform option,
275 # so we do things in a slightly complicated way.
276 omd/packages/mk-livestatus/mk-livestatus-$(VERSION).tar.gz:
277 rm -rf mk-livestatus-$(VERSION)
278 mkdir -p mk-livestatus-$(VERSION)
279 tar cf - $(TAROPTS) -C livestatus $$(cd livestatus ; echo $(LIVESTATUS_SOURCES) ) | tar xf - -C mk-livestatus-$(VERSION)
280 cp -a configure.ac m4 mk-livestatus-$(VERSION)
281 cd mk-livestatus-$(VERSION) && autoreconf --install --include=m4 && rm -rf autom4te.cache
282 tar czf omd/packages/mk-livestatus/mk-livestatus-$(VERSION).tar.gz $(TAROPTS) mk-livestatus-$(VERSION)
283 rm -rf mk-livestatus-$(VERSION)
285 version:
286 [ "$$(head -c 6 /etc/issue)" = "Ubuntu" \
287 -o "$$(head -c 16 /etc/issue)" = "Debian GNU/Linux" ] \
288 || { echo 'You are not on the reference system!' ; exit 1; }
289 @newversion=$$(dialog --stdout --inputbox "New Version:" 0 0 "$(VERSION)") ; \
290 if [ -n "$$newversion" ] ; then $(MAKE) NEW_VERSION=$$newversion setversion ; fi
292 setversion:
293 $(MAKE) -C omd NEW_VERSION=$(NEW_VERSION) setversion
294 sed -ri 's/^(VERSION[[:space:]]*:?= *).*/\1'"$(NEW_VERSION)/" defines.make ; \
295 sed -i 's/^AC_INIT.*/AC_INIT([MK Livestatus], ['"$(NEW_VERSION)"'], [mk@mathias-kettner.de])/' configure.ac ; \
296 sed -i 's/^VERSION=".*/VERSION="$(NEW_VERSION)"/' bin/mkbackup ; \
297 sed -i 's/^__version__ = ".*"$$/__version__ = "$(NEW_VERSION)"/' cmk/__init__.py bin/mkbench bin/livedump; \
298 sed -i 's/^VERSION=.*/VERSION='"$(NEW_VERSION)"'/' scripts/setup.sh ; \
299 $(MAKE) -C agents NEW_VERSION=$(NEW_VERSION) setversion
300 $(MAKE) -C docker NEW_VERSION=$(NEW_VERSION) setversion
301 ifeq ($(ENTERPRISE),yes)
302 $(MAKE) -C enterprise NEW_VERSION=$(NEW_VERSION) setversion
303 endif
305 headers:
306 doc/helpers/headrify
308 optimize-images:
309 @if type pngcrush >/dev/null 2>&1; then \
310 for F in $(PNG_FILES); do \
311 echo "Optimizing $$F..." ; \
312 pngcrush -q -rem alla -brute $$F $$F.opt ; \
313 mv $$F.opt $$F; \
314 done ; \
315 else \
316 echo "Missing pngcrush, not optimizing images! (run \"make setup\" to fix this)" ; \
319 # TODO: The --unsafe-perm was added because the CI executes this as root during
320 # tests and building versions. Once we have the then build system this should not
321 # be necessary anymore.
322 node_modules: package.json
323 npm install --unsafe-perm
325 web/htdocs/js/%_min.js: node_modules webpack.config.js $(JAVASCRIPT_SOURCES)
326 ENTERPRISE=$(ENTERPRISE) MANAGED=$(MANAGED) node_modules/.bin/webpack --mode=development
328 web/htdocs/themes/%/theme.css: node_modules webpack.config.js postcss.config.js web/htdocs/themes/%/theme.scss web/htdocs/themes/%/scss/*.scss
329 ENTERPRISE=$(ENTERPRISE) MANAGED=$(MANAGED) node_modules/.bin/webpack --mode=development
331 # TODO(sp) The target below is not correct, we should not e.g. remove any stuff
332 # which is needed to run configure, this should live in a separate target. In
333 # fact, we should really clean up all this cleaning-chaos and finally follow the
334 # GNU standards here (see "Standard Targets for Users",
335 # https://www.gnu.org/prep/standards/html_node/Standard-Targets.html).
336 clean:
337 make -C omd clean
338 rm -rf clang-analyzer dist.tmp rpm.topdir *.rpm *.deb *.exe \
339 omd/packages/mk-livestatus/mk-livestatus-*.tar.gz \
340 $(NAME)-*.tar.gz *~ counters autochecks \
341 precompiled cache web/htdocs/js/*_min.js \
342 web/htdocs/themes/*/theme.css \
343 .werks/werks \
344 ChangeLog
346 mrproper:
347 git clean -d --force -x --exclude='\.werks/.last' --exclude='\.werks/.my_ids'
349 setup:
350 sudo apt-get install \
351 aptitude \
352 autoconf \
353 bear \
354 build-essential \
355 clang-7 \
356 clang-format-7 \
357 clang-tidy-7 \
358 doxygen \
359 figlet \
360 g++ \
361 libboost-dev \
362 libboost-system-dev \
363 libclang-7-dev \
364 libpcap-dev \
365 librrd-dev \
366 llvm-7-dev \
367 libsasl2-dev \
368 pngcrush \
369 valgrind \
370 direnv \
371 python-pip \
372 chrpath \
373 enchant \
374 ksh \
375 p7zip-full
376 sudo -H pip install -U pipenv
377 $(MAKE) -C web setup
378 $(MAKE) -C omd setup
379 $(MAKE) -C omd openhardwaremonitor-setup
380 $(MAKE) -C docker setup
381 $(MAKE) -C locale setup
383 linesofcode:
384 @wc -l $$(find -type f -name "*.py" -o -name "*.js" -o -name "*.cc" -o -name "*.h" -o -name "*.css" | grep -v openhardwaremonitor | grep -v jquery | grep -v livestatus/src ) | sort -n
386 ar-lib compile config.guess config.sub install-sh missing depcomp: configure.ac
387 autoreconf --install --include=m4
388 touch ar-lib compile config.guess config.sub install-sh missing depcomp
390 # TODO(sp): We should really detect and use our own packages in a less hacky way...
391 config.status: $(CONFIG_DEPS)
392 @echo "Build $@ (newer targets: $?)"
393 @if test -f config.status; then \
394 echo "update config.status by reconfiguring in the same conditions" ; \
395 ./config.status --recheck; \
396 else \
397 if test -d ../boost/destdir ; then \
398 BOOST_OPT="--with-boost=$(abspath ../boost/destdir)" ; \
399 elif test -d omd/packages/boost/destdir ; then \
400 BOOST_OPT="--with-boost=$(abspath omd/packages/boost/destdir)" ; \
401 else \
402 BOOST_OPT="DUMMY1=" ; \
403 fi ; \
404 if test -d "omd/rrdtool-1.7.1/src/.libs"; then \
405 RRD_OPT="LDFLAGS=-L$(realpath omd/rrdtool-1.7.1/src/.libs)" ; \
406 else \
407 RRD_OPT="DUMMY2=" ; \
408 fi ; \
409 if test -d ../re2/destdir ; then \
410 RE2_OPT="--with-re2=$(abspath ../re2/destdir)" ; \
411 elif test -d omd/packages/re2/destdir ; then \
412 RE2_OPT="--with-re2=$(abspath omd/packages/re2/destdir)" ; \
413 else \
414 RE2_OPT="DUMMY3=" ; \
415 fi ; \
416 echo "configure CXXFLAGS=\"$(CXX_FLAGS)\" \"$$BOOST_OPT\" \"$$RRD_OPT\" \"$$RE2_OPT\"" ; \
417 ./configure CXXFLAGS="$(CXX_FLAGS)" "$$BOOST_OPT" "$$RRD_OPT" "$$RE2_OPT" ; \
420 configure: $(CONFIGURE_DEPS)
421 autoconf
423 aclocal.m4: $(M4_DEPS)
424 aclocal
426 config.h.in: $(CONFIGURE_DEPS)
427 autoheader
428 rm -f stamp-h1
429 touch $@
431 config.h: stamp-h1
432 @test -f $@ || rm -f stamp-h1
433 @test -f $@ || $(MAKE) stamp-h1
435 stamp-h1: config.h.in config.status
436 @rm -f stamp-h1
437 ./config.status config.h
439 GTAGS: config.h
440 # automake generates "gtags -i ...", but incremental updates seem to be a bit
441 # fragile, so let's start from scratch, gtags is quite fast.
442 $(RM) GTAGS GRTAGS GSYMS GPATH
443 # Note: Even if we descend into livestatus, gtags is run on the top level (next
444 # to configure.ac).
445 $(MAKE) -C livestatus GTAGS
447 compile-neb-cmc: config.status
448 $(MAKE) -C livestatus -j4
449 ifeq ($(ENTERPRISE),yes)
450 $(MAKE) -C enterprise/core -j4
451 endif
453 tidy: config.h
454 $(MAKE) -C livestatus/src tidy
455 ifeq ($(ENTERPRISE),yes)
456 $(MAKE) -C enterprise/core/src tidy
457 endif
459 iwyu: config.h
460 $(MAKE) -C livestatus/src iwyu
461 ifeq ($(ENTERPRISE),yes)
462 $(MAKE) -C enterprise/core/src iwyu
463 endif
465 # Not really perfect rules, but better than nothing
466 analyze: config.h
467 $(MAKE) -C livestatus clean
468 cd livestatus && $(SCAN_BUILD) -o ../clang-analyzer $(MAKE) CXXFLAGS="-std=c++17"
470 # GCC-like output on stderr intended for human consumption.
471 cppcheck: config.h
472 $(MAKE) -C livestatus/src cppcheck
473 ifeq ($(ENTERPRISE),yes)
474 $(MAKE) -C enterprise/core/src cppcheck
475 endif
477 # XML output into file intended for machine processing.
478 cppcheck-xml: config.h
479 $(MAKE) -C livestatus/src cppcheck-xml
480 ifeq ($(ENTERPRISE),yes)
481 $(MAKE) -C enterprise/core/src cppcheck-xml
482 endif
484 format: format-python format-c
486 # TODO: We should probably handle this rule via AM_EXTRA_RECURSIVE_TARGETS in
487 # src/configure.ac, but this needs at least automake-1.13, which in turn is only
488 # available from e.g. Ubuntu Saucy (13) onwards, so some magic is needed.
489 format-c:
490 $(CLANG_FORMAT) -style=file -i $(FILES_TO_FORMAT)
492 format-python: .venv
493 # Explicitly specify --style [FILE] to prevent costly searching in parent directories
494 # for each file specified via command line
496 # Saw some mixed up lines on stdout after adding the --parallel option. Leaving it on
497 # for the moment to get the performance boost this option brings.
498 PYTHON_FILES=$${PYTHON_FILES-$$(tests/find-python-files)} ; \
499 $(PIPENV) run yapf --parallel --style .style.yapf --verbose -i $$PYTHON_FILES
501 # Note: You need the doxygen and graphviz packages.
502 documentation: config.h
503 $(MAKE) -C livestatus/src documentation
504 ifeq ($(ENTERPRISE),yes)
505 $(MAKE) -C enterprise/core/src documentation
506 endif
508 Pipfile.lock: Pipfile
509 $(PIPENV) lock
510 # TODO: Can be removed if pipenv fixes this issue.
511 # See: https://github.com/pypa/pipenv/issues/3140
512 # https://github.com/pypa/pipenv/issues/3026
513 # The recent pipenv version 2018.10.13 has a bug that places wrong markers in the
514 # Pipfile.lock. This leads to an error when installing packages with this
515 # markers and prints an error message. Example:
516 # Ignoring pyopenssl: markers 'extra == "security"' don't match your environment
517 sed -i "/\"markers\": \"extra == /d" Pipfile.lock
518 # TODO: pipenv and make don't really cooperate nicely: Locking alone already
519 # creates a virtual environment with setuptools/pip/wheel. This could lead to a
520 # wrong up-to-date status of it later, so let's remove it here. What we really
521 # want is a check if the contents of .venv match the contents of Pipfile.lock.
522 # We should do this via some move-if-change Kung Fu, but for now rm suffices.
523 rm -rf .venv
525 .venv: Pipfile.lock
526 # Remake .venv everytime Pipfile or Pipfile.lock are updated. Using the 'sync'
527 # mode installs the dependencies exactly as speciefied in the Pipfile.lock.
528 # This is extremely fast since the dependencies do not have to be resolved.
529 $(RM) -r .venv
530 $(PIPENV) sync --dev
531 touch .venv
533 # This dummy rule is called from subdirectories whenever one of the
534 # top-level Makefile's dependencies must be updated. It does not
535 # need to depend on %MAKEFILE% because GNU make will always make sure
536 # %MAKEFILE% is updated before considering the am--refresh target.
537 am--refresh: