diff options
Diffstat (limited to 'src/Makefile_EPhysics.am')
-rw-r--r-- | src/Makefile_EPhysics.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/Makefile_EPhysics.am b/src/Makefile_EPhysics.am new file mode 100644 index 0000000000..d5704d8c8e --- /dev/null +++ b/src/Makefile_EPhysics.am | |||
@@ -0,0 +1,47 @@ | |||
1 | |||
2 | ### Library | ||
3 | |||
4 | lib_LTLIBRARIES += \ | ||
5 | lib/ephysics/libephysics.la | ||
6 | |||
7 | installed_ephysicsmainheadersdir = $(includedir)/ephysics-@VMAJ@ | ||
8 | dist_installed_ephysicsmainheaders_DATA = \ | ||
9 | lib/ephysics/EPhysics.h | ||
10 | |||
11 | lib_ephysics_libephysics_la_SOURCES = \ | ||
12 | lib/ephysics/ephysics_private.h \ | ||
13 | lib/ephysics/ephysics_trimesh.h \ | ||
14 | lib/ephysics/ephysics_body_materials.h \ | ||
15 | lib/ephysics/ephysics_body.cpp \ | ||
16 | lib/ephysics/ephysics_camera.cpp \ | ||
17 | lib/ephysics/ephysics_constraints.cpp \ | ||
18 | lib/ephysics/ephysics_main.cpp \ | ||
19 | lib/ephysics/ephysics_quaternion.cpp \ | ||
20 | lib/ephysics/ephysics_shape.cpp \ | ||
21 | lib/ephysics/ephysics_world.cpp | ||
22 | |||
23 | lib_ephysics_libephysics_la_CPPFLAGS = \ | ||
24 | -I$(top_srcdir)/src/lib/eina \ | ||
25 | -I$(top_builddir)/src/lib/eina \ | ||
26 | -I$(top_srcdir)/src/lib/eo \ | ||
27 | -I$(top_builddir)/src/lib/eo \ | ||
28 | -I$(top_srcdir)/src/lib/ecore \ | ||
29 | -I$(top_builddir)/src/lib/ecore \ | ||
30 | -I$(top_srcdir)/src/lib/evas \ | ||
31 | -I$(top_builddir)/src/lib/evas \ | ||
32 | -I$(top_srcdir)/src/lib/ephysics \ | ||
33 | -I$(top_builddir)/src/lib/ephysics \ | ||
34 | @EFL_COV_CFLAGS@ \ | ||
35 | @EPHYSICS_CFLAGS@ \ | ||
36 | -DEFL_EPHYSICS_BUILD | ||
37 | |||
38 | lib_ephysics_libephysics_la_LIBADD = \ | ||
39 | lib/eina/libeina.la \ | ||
40 | lib/eo/libeo.la \ | ||
41 | lib/ecore/libecore.la \ | ||
42 | lib/evas/libevas.la \ | ||
43 | @EFL_COV_LIBS@ \ | ||
44 | @EPHYSICS_LIBS@ | ||
45 | |||
46 | lib_ephysics_libephysics_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | ||
47 | |||