1 ## Process this file with automake to produce Makefile.in
5 BUILT_SOURCES = config-paths.h
7 DISTCLEANFILES = config-paths.h
9 config.h: config-paths.h
11 config-paths.h: Makefile
13 @echo '/* define to the path to cpp */' > $@
14 @echo '#define CPP_PATH "$(CPP_PATH)"' >> $@
16 @echo '/* gettext domain used for menu translations */' >> $@
17 @if test -z "$(menutextdomain)"; then \
18 echo '/* #undef MENU_TEXTDOMAIN "$(menutextdomain)" */' >> $@; \
20 echo '#define MENU_TEXTDOMAIN "$(menutextdomain)"' >> $@; \
23 @echo '/* define an extra path for pixmaps */' >> $@
24 @echo '#define PIXMAPDIR "$(pixmapdir)"' >> $@
26 @echo '/* where shared data is stored */' >> $@
27 @echo '#define PKGDATADIR "$(pkgdatadir)/WindowMaker"' >> $@
29 @echo '/* where the configuration is stored */' >> $@
30 @echo '#define SYSCONFDIR "$(sysconfdir)"' >> $@
32 ACLOCAL_AMFLAGS = -I m4
34 SUBDIRS = wrlib WINGs src util po WindowMaker WPrefs.app doc
36 EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N FAQ.I18N.cs FAQ.I18N.sk \
37 INSTALL-WMAKER INSTALL-WMAKER.cs INSTALL-WMAKER.fr INSTALL-WMAKER.es \
38 INSTALL-WMAKER.pt INSTALL-WMAKER.sk README.definable-cursor \
39 The-perfect-Window-Maker-patch.txt \
40 README.es README.pt COPYING.WTFPL autogen.sh
44 find . -type f -name '*.gcda' -exec rm -f '{}' ';'
45 lcov --directory . --zerocounters
48 rm -rf coverage @lcov_output_directory@
49 -mkdir -p coverage @lcov_output_directory@
50 lcov --compat-libtool --capture --directory . --output-file coverage/coverage.info
51 genhtml --output-directory @lcov_output_directory@ coverage/coverage.info
53 .PHONY: coverage-reset coverage