diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-09 06:56:11 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-09 06:56:11 +0000 |
commit | 1220a85df5ac908b2e4608bba198ad5d767bfa18 (patch) | |
tree | 30791760b6ee0a2190643319e4d7c94d91d5401b /legacy/eobj | |
parent | 5689ab4363bcc29be0eb734afeb15bec0afeb104 (diff) |
EO: dos2unix the toplevel Makefile.am
SVN revision: 76348
Diffstat (limited to 'legacy/eobj')
-rw-r--r-- | legacy/eobj/Makefile.am | 208 |
1 files changed, 104 insertions, 104 deletions
diff --git a/legacy/eobj/Makefile.am b/legacy/eobj/Makefile.am index 8455c91649..7c026881fe 100644 --- a/legacy/eobj/Makefile.am +++ b/legacy/eobj/Makefile.am | |||
@@ -1,104 +1,104 @@ | |||
1 | 1 | ||
2 | ACLOCAL_AMFLAGS = -I m4 | 2 | ACLOCAL_AMFLAGS = -I m4 |
3 | 3 | ||
4 | SUBDIRS = src doc | 4 | SUBDIRS = src doc |
5 | 5 | ||
6 | MAINTAINERCLEANFILES = \ | 6 | MAINTAINERCLEANFILES = \ |
7 | Makefile.in \ | 7 | Makefile.in \ |
8 | aclocal.m4 \ | 8 | aclocal.m4 \ |
9 | config.cache-env \ | 9 | config.cache-env \ |
10 | config.guess \ | 10 | config.guess \ |
11 | config.h.in \ | 11 | config.h.in \ |
12 | config.h.in~ \ | 12 | config.h.in~ \ |
13 | config.sub \ | 13 | config.sub \ |
14 | configure \ | 14 | configure \ |
15 | depcomp \ | 15 | depcomp \ |
16 | install-sh \ | 16 | install-sh \ |
17 | ltconfig \ | 17 | ltconfig \ |
18 | ltmain.sh \ | 18 | ltmain.sh \ |
19 | missing \ | 19 | missing \ |
20 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \ | 20 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \ |
21 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \ | 21 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \ |
22 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \ | 22 | $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2 \ |
23 | m4/libtool.m4 \ | 23 | m4/libtool.m4 \ |
24 | m4/lt~obsolete.m4 \ | 24 | m4/lt~obsolete.m4 \ |
25 | m4/ltoptions.m4 \ | 25 | m4/ltoptions.m4 \ |
26 | m4/ltsugar.m4 \ | 26 | m4/ltsugar.m4 \ |
27 | m4/ltversion.m4 | 27 | m4/ltversion.m4 |
28 | 28 | ||
29 | pkgconfigdir = $(libdir)/pkgconfig | 29 | pkgconfigdir = $(libdir)/pkgconfig |
30 | pkgconfig_DATA = eo.pc | 30 | pkgconfig_DATA = eo.pc |
31 | 31 | ||
32 | EXTRA_DIST = \ | 32 | EXTRA_DIST = \ |
33 | AUTHORS \ | 33 | AUTHORS \ |
34 | COPYING \ | 34 | COPYING \ |
35 | README \ | 35 | README \ |
36 | autogen.sh \ | 36 | autogen.sh \ |
37 | eo.pc.in \ | 37 | eo.pc.in \ |
38 | m4/efl_benchmark.m4 \ | 38 | m4/efl_benchmark.m4 \ |
39 | m4/efl_doxygen.m4 \ | 39 | m4/efl_doxygen.m4 \ |
40 | m4/efl_examples.m4 \ | 40 | m4/efl_examples.m4 \ |
41 | m4/efl_tests.m4 | 41 | m4/efl_tests.m4 |
42 | 42 | ||
43 | .PHONY: doc benchmark | 43 | .PHONY: doc benchmark |
44 | 44 | ||
45 | # Documentation | 45 | # Documentation |
46 | 46 | ||
47 | doc: | 47 | doc: |
48 | @echo "entering doc/" | 48 | @echo "entering doc/" |
49 | @cd doc && $(MAKE) doc | 49 | @cd doc && $(MAKE) doc |
50 | 50 | ||
51 | # Unit tests | 51 | # Unit tests |
52 | 52 | ||
53 | if EFL_ENABLE_TESTS | 53 | if EFL_ENABLE_TESTS |
54 | 54 | ||
55 | 55 | ||
56 | lcov-reset: | 56 | lcov-reset: |
57 | @rm -rf $(top_builddir)/coverage | 57 | @rm -rf $(top_builddir)/coverage |
58 | @find $(top_builddir) -name "*.gcda" -delete | 58 | @find $(top_builddir) -name "*.gcda" -delete |
59 | @lcov --zerocounters --directory $(top_builddir) | 59 | @lcov --zerocounters --directory $(top_builddir) |
60 | 60 | ||
61 | lcov-report: | 61 | lcov-report: |
62 | @mkdir $(top_builddir)/coverage | 62 | @mkdir $(top_builddir)/coverage |
63 | lcov --capture --compat-libtool --output-file $(top_builddir)/coverage/coverage.info --directory $(top_builddir) | 63 | lcov --capture --compat-libtool --output-file $(top_builddir)/coverage/coverage.info --directory $(top_builddir) |
64 | lcov --remove $(top_builddir)/coverage/coverage.info '*.h' --output-file $(top_builddir)/coverage/coverage.cleaned.info | 64 | lcov --remove $(top_builddir)/coverage/coverage.info '*.h' --output-file $(top_builddir)/coverage/coverage.cleaned.info |
65 | genhtml -t "$(PACKAGE_STRING)" -o $(top_builddir)/coverage/html $(top_builddir)/coverage/coverage.cleaned.info | 65 | genhtml -t "$(PACKAGE_STRING)" -o $(top_builddir)/coverage/html $(top_builddir)/coverage/coverage.cleaned.info |
66 | @echo "Coverage Report at $(top_builddir)/coverage/html" | 66 | @echo "Coverage Report at $(top_builddir)/coverage/html" |
67 | 67 | ||
68 | check-local: | 68 | check-local: |
69 | if EFL_ENABLE_COVERAGE | 69 | if EFL_ENABLE_COVERAGE |
70 | @$(MAKE) lcov-reset | 70 | @$(MAKE) lcov-reset |
71 | endif | 71 | endif |
72 | @./src/tests/eo_suite/eo_suite | 72 | @./src/tests/eo_suite/eo_suite |
73 | if EFL_ENABLE_COVERAGE | 73 | if EFL_ENABLE_COVERAGE |
74 | @$(MAKE) lcov-report | 74 | @$(MAKE) lcov-report |
75 | endif | 75 | endif |
76 | 76 | ||
77 | else | 77 | else |
78 | 78 | ||
79 | lcov-reset: | 79 | lcov-reset: |
80 | @echo "reconfigure with --enable-tests" | 80 | @echo "reconfigure with --enable-tests" |
81 | 81 | ||
82 | lcov-report: | 82 | lcov-report: |
83 | @echo "reconfigure with --enable-tests" | 83 | @echo "reconfigure with --enable-tests" |
84 | 84 | ||
85 | check-local: | 85 | check-local: |
86 | @echo "reconfigure with --enable-tests" | 86 | @echo "reconfigure with --enable-tests" |
87 | 87 | ||
88 | endif | 88 | endif |
89 | 89 | ||
90 | if EFL_ENABLE_BENCHMARK | 90 | if EFL_ENABLE_BENCHMARK |
91 | 91 | ||
92 | benchmark: | 92 | benchmark: |
93 | @cd src && $(MAKE) benchmark | 93 | @cd src && $(MAKE) benchmark |
94 | @mkdir result || true | 94 | @mkdir result || true |
95 | @cd result && ../src/tests/eo_bench `date +%F_%s` | 95 | @cd result && ../src/tests/eo_bench `date +%F_%s` |
96 | 96 | ||
97 | else | 97 | else |
98 | 98 | ||
99 | benchmark: | 99 | benchmark: |
100 | @echo "reconfigure with --enable-benchmark" | 100 | @echo "reconfigure with --enable-benchmark" |
101 | endif | 101 | endif |
102 | 102 | ||
103 | clean-local: | 103 | clean-local: |
104 | @rm -rf coverage benchmark | 104 | @rm -rf coverage benchmark |