Better icon scale
[wmaker-crm.git] / Makefile.am
blobf73e6cc31100138f7f895503db8a00941dd779a5
1 ## Process this file with automake to produce Makefile.in
3 AUTOMAKE_OPTIONS =
5 BUILT_SOURCES = config-paths.h
7 DISTCLEANFILES = config-paths.h
9 config.h: config-paths.h
11 config-paths.h: Makefile
12         @echo "Generating $@"
13         @echo '/* gettext domain used for menu translations */' >> $@
14         @if test -z "$(menutextdomain)"; then \
15           echo '/* #undef MENU_TEXTDOMAIN "$(menutextdomain)" */' >> $@; \
16         else \
17           echo '#define MENU_TEXTDOMAIN "$(menutextdomain)"' >> $@; \
18         fi
19         @echo '' >> $@
20         @echo '/* define an extra path for pixmaps */' >> $@
21         @echo '#define PIXMAPDIR "$(pixmapdir)"' >> $@
22         @echo '' >> $@
23         @echo '/* where shared data is stored */' >> $@
24         @echo '#define PKGDATADIR "$(datadir)/WindowMaker"' >> $@
25         @echo '' >> $@
26         @echo '/* where the configuration is stored */' >> $@
27         @echo '#define SYSCONFDIR "$(sysconfdir)"' >> $@
29 ACLOCAL_AMFLAGS = -I m4
31 SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc test
33 EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL \
34         INSTALL-WMAKER README.definable-cursor \
35         The-perfect-Window-Maker-patch.txt \
36         README COPYING.WTFPL autogen.sh
38 if USE_LCOV
39 coverage-reset:
40         find . -type f -name '*.gcda' -exec rm -f '{}' ';'
41         lcov --directory . --zerocounters
43 coverage:
44         rm -rf coverage @lcov_output_directory@
45         -mkdir -p coverage @lcov_output_directory@
46         lcov --compat-libtool --capture --directory . --output-file coverage/coverage.info
47         genhtml --output-directory @lcov_output_directory@ coverage/coverage.info
49 .PHONY: coverage-reset coverage
50 endif