diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 21:15:43 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 21:15:43 +0000 |
commit | 103b912f667bc4bfb9318bef91ccf5f077ca6761 (patch) | |
tree | 149a86cf6e6c2c74e6342edbb43c406633b7d982 /Makefile.am | |
parent | c83143c8896752e139c82259e22c56715c313e7b (diff) |
merge: and the eina examples
SVN revision: 76715
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 11052f092d..1d9a508d81 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -47,7 +47,7 @@ endif | |||
47 | pkgconfig_DATA += eina.pc | 47 | pkgconfig_DATA += eina.pc |
48 | 48 | ||
49 | 49 | ||
50 | .PHONY: doc benchmark | 50 | .PHONY: doc benchmark examples install-examples |
51 | 51 | ||
52 | # Documentation | 52 | # Documentation |
53 | 53 | ||
@@ -97,3 +97,16 @@ benchmark-e17: | |||
97 | @$(MAKE) -C src benchmark-e17 | 97 | @$(MAKE) -C src benchmark-e17 |
98 | @mkdir benchmark || true | 98 | @mkdir benchmark || true |
99 | @cd benchmark && ../src/benchmarks/eina/eina_bench `date +%F_%s` | 99 | @cd benchmark && ../src/benchmarks/eina/eina_bench `date +%F_%s` |
100 | |||
101 | # examples | ||
102 | |||
103 | examples: | ||
104 | @$(MAKE) -C src examples | ||
105 | |||
106 | install-examples: | ||
107 | @$(MAKE) -C src install-examples | ||
108 | |||
109 | # cleaning | ||
110 | |||
111 | clean-local: | ||
112 | rm -rf benchmark coverage | ||