File: Makefile.am

package info (click to toggle)
libfizmo 0.7.15-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,216 kB
  • sloc: ansic: 19,107; sh: 1,540; xml: 807; cpp: 261; makefile: 158
file content (129 lines) | stat: -rw-r--r-- 5,178 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129

# Makefile.am
#
# This file is part of fizmo.
#
# Copyright (c) 2009-2017 Christoph Ender.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
#    contributors may be used to endorse or promote products derived
#    from this software without specific prior written permission.
# 
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.



AUTOMAKE_OPTIONS = -Wno-override

tmplibdir = libfizmotmp
localedir = $(datarootdir)/fizmo/locales

if FIZMO_DIST_BUILD
  dev_prefix=$(FIZMO_DIST_BUILD_PREFIX)
  pkg_prefix=$(FIZMO_DIST_BUILD_PREFIX)
else
  dev_prefix=$(DESTDIR)/$(prefix)
  pkg_prefix=$(prefix)
endif

fizmo_build_prefix=$(dev_prefix)

pkg_dir = $(dev_prefix)/lib/pkgconfig
pkgfile = $(pkg_dir)/libfizmo.pc

SUBDIRS = src/tools src/interpreter .
noinst_LIBRARIES = libfizmo.a

# Object files are stored in pre-defined order into the static library in
# order to make the build reproducible for Debian's ReproducibleBuilds
# project, see https://wiki.debian.org/ReproducibleBuilds
# Patch provided by Sascha Steinbiss <satta@debian.org>.
libfizmo.a::
	cd src/tools ; make
	cd src/interpreter ; make
	mkdir -p "$(tmplibdir)" ; \
	cd "$(tmplibdir)" ; \
	"$(AR)" x ../src/tools/libtools.a ; \
	"$(AR)" x ../src/interpreter/libinterpreter.a ; \
	find . -name '*.o' -print0 | LC_ALL=C sort -z | xargs -0 "$(AR)" $(ARFLAGS) ../libfizmo.a ; \
	"$(RANLIB)" ../libfizmo.a ; \
	cd .. ; \
	rm -r "$(tmplibdir)"

install-dev:: libfizmo.a
	mkdir -p "$(dev_prefix)/lib/fizmo"
	cp libfizmo.a "$(dev_prefix)/lib/fizmo"
	mkdir -p "$(dev_prefix)/include/fizmo/interpreter"
	cp src/interpreter/*.h \
	  "$(dev_prefix)/include/fizmo/interpreter"
	mkdir -p "$(dev_prefix)/include/fizmo/tools"
	cp src/tools/*.h "$(dev_prefix)/include/fizmo/tools"
	mkdir -p "$(dev_prefix)/include/fizmo/screen_interface"
	cp src/screen_interface/*.h \
	  "$(dev_prefix)/include/fizmo/screen_interface"
	cp src/screen_interface/*.cpp \
	  "$(dev_prefix)/include/fizmo/screen_interface"
	cp -r src/sound_interface "$(dev_prefix)/include/fizmo/"
	cp -r src/filesys_interface "$(dev_prefix)/include/fizmo/"
	cp -r src/blorb_interface "$(dev_prefix)/include/fizmo/"
	mkdir -p "$(pkg_dir)"
	echo 'prefix=$(pkg_prefix)' >"$(pkgfile)"
	echo 'exec_prefix=$${prefix}' >>"$(pkgfile)"
	echo 'libdir=$${exec_prefix}/lib/fizmo' >>"$(pkgfile)"
	echo 'includedir=$${prefix}/include/fizmo' >>"$(pkgfile)"
	echo >>"$(pkgfile)"
	echo 'Name: libfizmo' >>"$(pkgfile)"
	echo 'Description: libfizmo' >>"$(pkgfile)"
	echo 'Version: 0.7.15' >>"$(pkgfile)"
	echo "Requires: $(LIBFIZMO_REQS)" >>"$(pkgfile)"
	echo 'Requires.private:' >>"$(pkgfile)"
	echo 'Cflags: -I$(pkg_prefix)/include/fizmo' >>"$(pkgfile)"
	echo 'Libs: -L$(pkg_prefix)/lib/fizmo -lfizmo $(LIBXML2_NONPKG_LIBS) -lm' >>"$(pkgfile)"
	echo 'Libs.private:' >>"$(pkgfile)"
	echo >>"$(pkgfile)"

install-data-local::
	mkdir -p "$(DESTDIR)$(localedir)"
	for l in `cd src/locales ; ls -d ??_??`; \
	do \
	mkdir -p "$(DESTDIR)$(localedir)/$$l" ; \
	cp src/locales/$$l/*.txt "$(DESTDIR)$(localedir)/$$l" ; \
	done

# About "-rmdir": make ignores errors of commands which are prefixed with
# a - sign. rmdir may fail in clean-dev in case other libs have installed
# development files, or in case clean-dev has been run before.
clean-dev::
	-rm    "$(dev_prefix)/lib/fizmo/libfizmo.a"
	-rmdir "$(dev_prefix)/lib/fizmo"
	rm -rf "$(dev_prefix)/include/fizmo/interpreter"
	rm -rf "$(dev_prefix)/include/fizmo/tools"
	rm -rf "$(dev_prefix)/include/fizmo/sound_interface"
	rm -rf "$(dev_prefix)/include/fizmo/filesys_interface"
	rm -rf "$(dev_prefix)/include/fizmo/blorb_interface"
	-rm    "$(dev_prefix)/include/fizmo/screen_interface/ScreenInterface.cpp"
	-rm    "$(dev_prefix)/include/fizmo/screen_interface/ScreenInterface.h"
	-rm    "$(dev_prefix)/include/fizmo/screen_interface/screen_interface.h"
	-rmdir "$(dev_prefix)/include/fizmo/screen_interface"
	-rmdir "$(dev_prefix)/include/fizmo"
	-rm    "$(pkgfile)"