diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-04-03 17:41:13 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-04-03 17:41:13 -0700 |
commit | 3f17851a16a4f2d8f6c13d225aee7a822e929a20 (patch) | |
tree | 8d4945668e61b86620136b16853a018ec69f47d9 /src/libs | |
parent | b328cf5313b53652be2405113daa60e7ce745311 (diff) |
libs: commit missing Makefile.am files
Oops! This should have made it into b5bc96, been sitting
in my tree.
Diffstat (limited to 'src/libs')
-rw-r--r-- | src/libs/Makefile.am | 1 | ||||
-rw-r--r-- | src/libs/ray/Makefile.am | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/libs/Makefile.am b/src/libs/Makefile.am new file mode 100644 index 0000000..99b6857 --- /dev/null +++ b/src/libs/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = ray diff --git a/src/libs/ray/Makefile.am b/src/libs/ray/Makefile.am new file mode 100644 index 0000000..dc13a0d --- /dev/null +++ b/src/libs/ray/Makefile.am @@ -0,0 +1,4 @@ +noinst_LIBRARIES = libray.a +libray_a_SOURCES = ray_3f.h ray_camera.c ray_camera.h ray_color.h ray_euler.c ray_euler.h ray_light_emitter.h ray_object.h ray_object_light.h ray_object_plane.h ray_object_point.h ray_object_sphere.h ray_object_type.h ray_ray.h ray_render.c ray_render.h ray_render_object.h ray_render_object_plane.h ray_render_object_point.h ray_render_object_sphere.h ray_scene.h ray_surface.h +libray_a_CFLAGS = -ffast-math +libray_a_CPPFLAGS = -I@top_srcdir@/src |