]> git.sur5r.net Git - i3/i3/blob - Makefile
Move i3-input to the new Makefile layout
[i3/i3] / Makefile
1 TOPDIR=$(shell pwd)
2
3 include $(TOPDIR)/common.mk
4
5 SUBDIRS:=i3-nagbar i3bar i3-dump-log
6
7 ALL_TARGETS =
8 INSTALL_TARGETS =
9 CLEAN_TARGETS =
10 DISTCLEAN_TARGETS =
11
12 all: real-all
13
14 include libi3/libi3.mk
15 include src/i3.mk
16 include i3-config-wizard/i3-config-wizard.mk
17 include i3-msg/i3-msg.mk
18 include i3-input/i3-input.mk
19
20 real-all: $(ALL_TARGETS) subdirs
21
22 subdirs:
23         for dir in $(SUBDIRS); do \
24                 echo ""; \
25                 echo "MAKE $$dir"; \
26                 $(MAKE) -C $$dir; \
27         done
28
29 install: $(INSTALL_TARGETS)
30         for dir in $(SUBDIRS); do \
31                 $(MAKE) -C $$dir install; \
32         done
33
34 dist: distclean
35         [ ! -d i3-${VERSION} ] || rm -rf i3-${VERSION}
36         [ ! -e i3-${VERSION}.tar.bz2 ] || rm i3-${VERSION}.tar.bz2
37         mkdir i3-${VERSION}
38         cp i3-migrate-config-to-v4 generate-command-parser.pl i3-sensible-* i3.config.keycodes DEPENDS LICENSE PACKAGE-MAINTAINER RELEASE-NOTES-${VERSION} i3.config i3.xsession.desktop i3.applications.desktop pseudo-doc.doxygen Makefile i3-${VERSION}
39         cp -r src libi3 i3-msg i3-nagbar i3-config-wizard i3bar i3-dump-log yajl-fallback include man parser-specs i3-${VERSION}
40         # Only copy toplevel documentation (important stuff)
41         mkdir i3-${VERSION}/docs
42         # Pre-generate documentation
43         $(MAKE) -C docs
44         $(MAKE) -C i3bar/doc
45         # Cleanup τεχ output files
46         find docs -regex ".*\.\(aux\|out\|log\|toc\|bm\|dvi\|log\)" -exec rm '{}' \;
47         find docs -maxdepth 1 -type f ! \( -name "*.xcf" -or -name "*.svg" \) -exec cp '{}' i3-${VERSION}/docs \;
48         # Only copy source code from i3-input
49         mkdir i3-${VERSION}/i3-input
50         find i3-input -maxdepth 1 -type f \( -name "*.c" -or -name "*.h" -or -name "Makefile" \) -exec cp '{}' i3-${VERSION}/i3-input \;
51         sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION:=$(shell /bin/echo '${GIT_VERSION}' | sed 's/\\/\\\\/g')/g;s/^VERSION:=\(.*\)/VERSION:=${VERSION}/g' common.mk > i3-${VERSION}/common.mk
52         # Pre-generate a manpage to allow distributors to skip this step and save some dependencies
53         $(MAKE) -C man
54         cp man/*.1 i3-${VERSION}/man/
55         cp i3bar/doc/*.1 i3-${VERSION}/i3bar/doc/
56         tar cfj i3-${VERSION}.tar.bz2 i3-${VERSION}
57         rm -rf i3-${VERSION}
58
59 clean: $(CLEAN_TARGETS)
60         (which lcov >/dev/null 2>&1 && lcov -d . --zerocounters) || true
61         $(MAKE) -C docs clean
62         $(MAKE) -C man clean
63         for dir in $(SUBDIRS); do \
64                 echo ""; \
65                 echo "CLEAN $$dir"; \
66                 $(MAKE) TOPDIR=$(TOPDIR) -C $$dir distclean; \
67         done
68
69 distclean: clean $(DISTCLEAN_TARGETS)
70         rm -f i3
71         for dir in $(SUBDIRS); do \
72                 echo ""; \
73                 echo "DISTCLEAN $$dir"; \
74                 $(MAKE) TOPDIR=$(TOPDIR) -C $$dir distclean; \
75         done
76
77 coverage:
78         rm -f /tmp/i3-coverage.info
79         rm -rf /tmp/i3-coverage
80         lcov -d . -b . --capture -o /tmp/i3-coverage.info
81         genhtml -o /tmp/i3-coverage/ /tmp/i3-coverage.info