eet-cxx: add implementation for eet C++.
[platform/upstream/efl.git] / src / Makefile.am
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 MAINTAINERCLEANFILES = Makefile.in
4 CLEANFILES =
5 BUILT_SOURCES =
6
7 EOLIAN_FLAGS = \
8                -I$(srcdir)/lib/eo \
9                -I$(srcdir)/lib/evas/canvas \
10                -I$(srcdir)/lib/edje
11
12
13 DIST_SUBDIRS =
14 SUBDIRS =
15
16 lib_LTLIBRARIES =
17 bin_PROGRAMS =
18 bin_SCRIPTS =
19 noinst_PROGRAMS =
20 check_PROGRAMS =
21 TESTS =
22 EXTRA_DIST =
23
24
25 EFL_INSTALL_EXEC_HOOK=
26
27 include Makefile_Efl.am
28
29 include Makefile_Evil.am
30 include Makefile_Escape.am
31
32 include Makefile_Eina.am
33 include Makefile_Eo.am
34 include Makefile_Eet.am
35 include Makefile_Eet_Cxx.am
36 include Makefile_Eolian.am
37 include Makefile_Evas.am
38 include Makefile_Ecore.am
39 include Makefile_Ecore_Cxx.am
40 include Makefile_Ecore_Con.am
41 include Makefile_Ecore_Ipc.am
42 include Makefile_Ecore_File.am
43 include Makefile_Ecore_Input.am
44 include Makefile_Ecore_Input_Evas.am
45 include Makefile_Ecore_Cocoa.am
46 include Makefile_Ecore_Drm.am
47 include Makefile_Ecore_FB.am
48 include Makefile_Ecore_Psl1ght.am
49 include Makefile_Ecore_SDL.am
50 include Makefile_Ecore_Wayland.am
51 include Makefile_Ecore_Win32.am
52 include Makefile_Ecore_WinCE.am
53 include Makefile_Ecore_X.am
54 include Makefile_Ecore_IMF.am
55 include Makefile_Ecore_IMF_Evas.am
56 include Makefile_Ecore_Evas.am
57 include Makefile_Ecore_Audio.am
58 include Makefile_Ecore_Avahi.am
59 include Makefile_Embryo.am
60 include Makefile_Eio.am
61 include Makefile_Eldbus.am
62 include Makefile_Efreet.am
63 include Makefile_Eeze.am
64 include Makefile_EPhysics.am
65 include Makefile_Edje.am
66 include Makefile_Emotion.am
67 include Makefile_Ethumb.am
68 include Makefile_Ethumb_Client.am
69
70 include Makefile_Eina_Cxx.am
71
72 .PHONY: benchmark examples
73
74 BENCHMARK_SUBDIRS = \
75 benchmarks/eina \
76 benchmarks/eo
77 DIST_SUBDIRS += $(BENCHMARK_SUBDIRS)
78
79 benchmark: all-am
80         @for d in $(BENCHMARK_SUBDIRS); do \
81            echo "Making benchmark in $$d"; \
82            $(MAKE) $(AM_MAKEFLAGS) -C $$d benchmark; \
83         done
84
85 EXAMPLES_SUBDIRS = \
86 examples/eina \
87 examples/eina_cxx \
88 examples/eo \
89 examples/eet \
90 examples/evas \
91 examples/ecore \
92 examples/ecore_avahi \
93 examples/eio \
94 examples/eldbus \
95 examples/ephysics \
96 examples/edje \
97 examples/emotion \
98 examples/ethumb_client
99 if ALWAYS_BUILD_EXAMPLES
100 SUBDIRS += . $(EXAMPLES_SUBDIRS)
101 endif
102 DIST_SUBDIRS += $(EXAMPLES_SUBDIRS)
103
104 examples: all-am
105         @for d in $(EXAMPLES_SUBDIRS); do \
106            echo "Making examples in $$d"; \
107            $(MAKE) $(AM_MAKEFLAGS) -C $$d examples || exit 1; \
108         done
109
110 install-examples:
111         @for d in $(EXAMPLES_SUBDIRS); do \
112            echo "Making install-examples in $$d"; \
113            $(MAKE) $(AM_MAKEFLAGS) -C $$d install-examples || exit 1; \
114         done
115
116 clean-local:
117         find . -type f -name '*.gcno' -delete
118         find . -type f -name '*.gcda' -delete
119         find . -type f -name check-results.xml -delete
120
121 install-exec-hook:
122         for i in $(lib_LTLIBRARIES); do sed -i "s/-luuid//" $(DESTDIR)$(libdir)/`echo $$i | sed "s#lib/.*/##"`; done
123         $(EFL_INSTALL_EXEC_HOOK)