summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 898f522d84a9c323f4e5f3612d4d523564c05b4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AM_CFLAGS = -Wall -pedantic -std=c99 -flto

bin_PROGRAMS = ray ray-headless


ray_SOURCES = main_glut.c ray.c 3dmath.c 3dmath.h
ray_LDADD = -lGL -lGLU -lglut -lm
ray_LDFLAGS = -pthread

ray_headless_SOURCES = main_headless.c ray.c 3dmath.c 3dmath.h
ray_headless_LDADD = -lm
ray_headless_LDFLAGS = -pthread

TESTS = ./test-profile-arcs.sh

.PHONY: test

test: check