mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-25 07:32:36 +01:00
It was removed on 67a8a82670 with the assumption that
nothing was using it. But that was not really the case - FSViewer
used it.
I've just tested it. After a trivial fix regarding the change in
the function definition of WMWritePropListToFile(), FSViewer
compiles and even seems to work (didn't test much though).
So let's not be unfair with FSViewer and put wmlib back. FSViewer
might even be used for educational purposes for people wanting to
write apps using WINGs etc.
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
BUILT_SOURCES = config-paths.h
|
|
|
|
DISTCLEANFILES = config-paths.h
|
|
|
|
config.h: config-paths.h
|
|
|
|
config-paths.h: Makefile
|
|
@echo "Generating $@"
|
|
@echo '/* define to the path to cpp */' > $@
|
|
@echo '#define CPP_PATH "$(CPP_PATH)"' >> $@
|
|
@echo '' >> $@
|
|
@echo '/* gettext domain used for menu translations */' >> $@
|
|
@if test -z "$(menutextdomain)"; then \
|
|
echo '/* #undef MENU_TEXTDOMAIN "$(menutextdomain)" */' >> $@; \
|
|
else \
|
|
echo '#define MENU_TEXTDOMAIN "$(menutextdomain)"' >> $@; \
|
|
fi
|
|
@echo '' >> $@
|
|
@echo '/* define an extra path for pixmaps */' >> $@
|
|
@echo '#define PIXMAPDIR "$(pixmapdir)"' >> $@
|
|
@echo '' >> $@
|
|
@echo '/* where shared data is stored */' >> $@
|
|
@echo '#define PKGDATADIR "$(datadir)/WindowMaker"' >> $@
|
|
@echo '' >> $@
|
|
@echo '/* where the configuration is stored */' >> $@
|
|
@echo '#define SYSCONFDIR "$(sysconfdir)"' >> $@
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc
|
|
|
|
EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL \
|
|
INSTALL-WMAKER README.definable-cursor \
|
|
The-perfect-Window-Maker-patch.txt \
|
|
README COPYING.WTFPL autogen.sh
|
|
|
|
if USE_LCOV
|
|
coverage-reset:
|
|
find . -type f -name '*.gcda' -exec rm -f '{}' ';'
|
|
lcov --directory . --zerocounters
|
|
|
|
coverage:
|
|
rm -rf coverage @lcov_output_directory@
|
|
-mkdir -p coverage @lcov_output_directory@
|
|
lcov --compat-libtool --capture --directory . --output-file coverage/coverage.info
|
|
genhtml --output-directory @lcov_output_directory@ coverage/coverage.info
|
|
|
|
.PHONY: coverage-reset coverage
|
|
endif
|