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