]> git.jsancho.org Git - guile-irrlicht.git/blob - Makefile.am
box3d-reset! vertex3d-position
[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/box3d.cpp \
30   src/camera-scene-node.cpp \
31   src/color.cpp \
32   src/cursor-control.cpp \
33   src/device.cpp \
34   src/dimension2d.cpp \
35   src/driver-types.cpp \
36   src/file-archive.cpp \
37   src/file-system.cpp \
38   src/gui-element.cpp \
39   src/gui-environment.cpp \
40   src/gui-static-text.cpp \
41   src/guile-irrlicht.cpp \
42   src/keymap.cpp \
43   src/material.cpp \
44   src/material-flags.cpp \
45   src/mesh.cpp \
46   src/mesh-scene-node.cpp \
47   src/misc.cpp \
48   src/position2d.cpp \
49   src/rect.cpp \
50   src/reference-counted.cpp \
51   src/scene-manager.cpp \
52   src/scene-node.cpp \
53   src/texture.cpp \
54   src/vector2d.cpp \
55   src/vector3d.cpp \
56   src/vertex3d.cpp \
57   src/video-driver.cpp \
58   src/wchar.cpp
59 libguile_irrlicht_la_CPPFLAGS = @GUILE_CFLAGS@
60 libguile_irrlicht_la_LDFLAGS = \
61   -version-info 0:1 \
62   @GUILE_LIBS@
63
64
65 # Guile code
66 GOBJECTS = $(SOURCES:%.scm=%.go)
67
68 nobase_mod_DATA = $(SOURCES)
69 nobase_go_DATA = $(GOBJECTS)
70
71 guile_install_go_files = install-nobase_goDATA
72 $(guile_install_go_files): install-nobase_modDATA
73
74 CLEANFILES = $(GOBJECTS)
75 EXTRA_DIST = $(SOURCES)
76 GUILE_COMPILE_FLAGS = -L .
77 GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
78 SUFFIXES = .scm .go
79 .scm.go:
80         $(GUILE_TOOLS) compile $(GUILE_WARNINGS) $(GUILE_COMPILE_FLAGS) -o "$@" "$<"
81
82 moddir = @GUILE_SITE@
83 godir = @GUILE_SITE_CCACHE@
84
85 SOURCES = irrlicht.scm