]> git.jsancho.org Git - guile-irrlicht.git/blob - Makefile.am
set-material-texture! get-texture
[guile-irrlicht.git] / Makefile.am
1 # guile-irrlicht --- GNU Guile bindings for Irrlicht Engine
2 #
3 # Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
4 #
5 # This file is part of guile-irrlicht.
6 #
7 # guile-irrlicht is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU Lesser General Public License as
9 # published by the Free Software Foundation; either version 3 of the
10 # License, or (at your option) any later version.
11 #
12 # guile-irrlicht is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with guile-irrlicht. If not, see
19 # <http://www.gnu.org/licenses/>.
20
21
22 # C++ code
23 ACLOCAL_AMFLAGS = -I m4
24 lib_LTLIBRARIES = libguile-irrlicht.la
25 libguile_irrlicht_la_SOURCES = \
26   src/animated-mesh.cpp \
27   src/animated-mesh-md2.cpp \
28   src/animated-mesh-scene-node.cpp \
29   src/device.cpp \
30   src/dimension2d.cpp \
31   src/driver-types.cpp \
32   src/gui-element.cpp \
33   src/gui-environment.cpp \
34   src/gui-static-text.cpp \
35   src/guile-irrlicht.cpp \
36   src/material-flags.cpp \
37   src/rect.cpp \
38   src/reference-counted.cpp \
39   src/scene-manager.cpp \
40   src/scene-node.cpp \
41   src/texture.cpp \
42   src/vector3d.cpp \
43   src/video-driver.cpp \
44   src/wchar.cpp
45 libguile_irrlicht_la_CPPFLAGS = @GUILE_CFLAGS@
46 libguile_irrlicht_la_LDFLAGS = \
47   -version-info 0:1 \
48   @GUILE_LIBS@
49
50
51 # Guile code
52 GOBJECTS = $(SOURCES:%.scm=%.go)
53
54 nobase_mod_DATA = $(SOURCES)
55 nobase_go_DATA = $(GOBJECTS)
56
57 guile_install_go_files = install-nobase_goDATA
58 $(guile_install_go_files): install-nobase_modDATA
59
60 CLEANFILES = $(GOBJECTS)
61 EXTRA_DIST = $(SOURCES)
62 GUILE_COMPILE_FLAGS = -L .
63 GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
64 SUFFIXES = .scm .go
65 .scm.go:
66         $(GUILE_TOOLS) compile $(GUILE_WARNINGS) $(GUILE_COMPILE_FLAGS) -o "$@" "$<"
67
68 moddir = @GUILE_SITE@
69 godir = @GUILE_SITE_CCACHE@
70
71 SOURCES = \
72   irrlicht.scm \
73   irrlicht/device.scm \
74   irrlicht/gui.scm \
75   irrlicht/irr.scm \
76   irrlicht/scene.scm \
77   irrlicht/video.scm