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