########################################################################### ## Copyright (C) 2009-2014 Tavian Barnes ## ## ## ## This file is part of The Dimension Build Suite. ## ## ## ## The Dimension Build Suite is free software; you can redistribute it ## ## and/or modify it under the terms of the GNU General Public License as ## ## published by the Free Software Foundation; either version 3 of the ## ## License, or (at your option) any later version. ## ## ## ## The Dimension Build Suite is distributed in the hope that it will be ## ## useful, but WITHOUT ANY WARRANTY; without even the implied warranty ## ## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## ## General Public License for more details. ## ## ## ## You should have received a copy of the GNU General Public License ## ## along with this program. If not, see . ## ########################################################################### SUBDIRS = . \ bench \ tests AM_CFLAGS = $(PTHREAD_CFLAGS) # Make dmnsn_error() backtraces useful AM_LDFLAGS = $(PTHREAD_LIBS) -rdynamic CC = $(PTHREAD_CC) nobase_include_HEADERS = dimension.h \ dimension/array.h \ dimension/camera.h \ dimension/cameras.h \ dimension/canvas.h \ dimension/color.h \ dimension/compiler.h \ dimension/csg.h \ dimension/dictionary.h \ dimension/error.h \ dimension/finish.h \ dimension/finishes.h \ dimension/future.h \ dimension/geometry.h \ dimension/gl.h \ dimension/interior.h \ dimension/light.h \ dimension/lights.h \ dimension/malloc.h \ dimension/map.h \ dimension/object.h \ dimension/objects.h \ dimension/pattern.h \ dimension/patterns.h \ dimension/pigment.h \ dimension/pigments.h \ dimension/png.h \ dimension/polynomial.h \ dimension/ray_trace.h \ dimension/refcount.h \ dimension/scene.h \ dimension/tcolor.h \ dimension/texture.h \ dimension/timer.h lib_LTLIBRARIES = libdimension.la libdimension_la_SOURCES = $(nobase_include_HEADERS) \ bvh.c \ bvh.h \ camera.c \ canvas.c \ canvas_pigment.c \ checker.c \ compiler-internal.h \ cone.c \ cube.c \ csg.c \ dictionary.c \ dimension-internal.h \ error.c \ finish.c \ future.c \ future-internal.h \ geometry.c \ gradient.c \ inline.c \ interior.c \ lambertian.c \ leopard.c \ light.c \ malloc.c \ map.c \ object.c \ pattern.c \ perspective.c \ phong.c \ pigment.c \ pigment_map.c \ plane.c \ platform.c \ platform.h \ profile.h \ point_light.c \ polynomial.c \ prtree.c \ prtree.h \ ray_trace.c \ refcount-internal.h \ reflection.c \ rgba.c \ rgba.h \ scene.c \ solid_pigment.c \ sphere.c \ texture.c \ threads.c \ threads.h \ timer.c \ torus.c \ triangle.c libdimension_la_CFLAGS = $(AM_CFLAGS) libdimension_la_LDFLAGS = -version-info 0:0:0 -no-undefined $(AM_LDFLAGS) libdimension_la_LIBADD = if PNG libdimension_la_SOURCES += png.c libdimension_la_CFLAGS += $(libpng_CFLAGS) libdimension_la_LIBADD += $(libpng_LIBS) else libdimension_la_SOURCES += png-stubs.c endif if GL libdimension_la_SOURCES += gl.c libdimension_la_LIBADD += -lGL else libdimension_la_SOURCES += gl-stubs.c endif if PROFILE libdimension_la_SOURCES += profile.c endif pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libdimension.pc bench: all-recursive cd bench && $(MAKE) $(AM_MAKEFLAGS) bench clean-local: clean-doc doc: doxygen Doxyfile clean-doc: rm -rf doc .PHONY: bench doc