summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorMartin Stensgård <mastensg@mastensg.net>2016-11-02 04:22:43 +0100
committerMartin Stensgård <mastensg@mastensg.net>2016-11-02 04:22:43 +0100
commit63a2b7998c61ce7614446045aa0d0c00cb0b4d1f (patch)
treec366b4bdf917686d35e8e394a7513b1fdff7af94 /Makefile.am
parentdc68c16069474e4ceb988f6098742ee4c899e1bb (diff)
add pixmap-saving version
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 898f522..d978213 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
AM_CFLAGS = -Wall -pedantic -std=c99 -flto
-bin_PROGRAMS = ray ray-headless
+bin_PROGRAMS = ray ray-headless ray-ppm
ray_SOURCES = main_glut.c ray.c 3dmath.c 3dmath.h
@@ -11,6 +11,10 @@ ray_headless_SOURCES = main_headless.c ray.c 3dmath.c 3dmath.h
ray_headless_LDADD = -lm
ray_headless_LDFLAGS = -pthread
+ray_ppm_SOURCES = main_ppm.c ray.c 3dmath.c 3dmath.h
+ray_ppm_LDADD = -lm
+ray_ppm_LDFLAGS = -pthread
+
TESTS = ./test-profile-arcs.sh
.PHONY: test