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 '/* this is a generated file - do not edit */' > $@
15 @echo '/* gettext domain used for menu translations */' >> $@
16 @if test -z "$(menutextdomain)"; then \
17 echo '/* #undef MENU_TEXTDOMAIN "$(menutextdomain)" */' >> $@; \
19 echo '#define MENU_TEXTDOMAIN "$(menutextdomain)"' >> $@; \
22 @echo '/* define an extra path for pixmaps */' >> $@
23 @echo '#define PIXMAPDIR "$(pixmapdir)"' >> $@
25 @echo '/* where shared data is stored */' >> $@
26 @echo '#define PKGDATADIR "$(datadir)/WindowMaker"' >> $@
28 @echo '/* where the configuration is stored */' >> $@
29 @echo '#define SYSCONFDIR "$(sysconfdir)"' >> $@
31 ACLOCAL_AMFLAGS = -I m4
33 SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc test
35 EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL \
36 INSTALL-WMAKER README.definable-cursor \
37 The-perfect-Window-Maker-patch.txt \
38 README COPYING.WTFPL autogen.sh \
39 email-clients.txt checkpatch.pl update-changelog.pl \
40 script/nested-func-to-macro.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