aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Makefile.in
blob: fa2ba5d94bc173a5e47e930f04e0e16d6add369c (plain) (blame)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
##
# Makefile for @PACKAGE_STRING@
# @configure_input@
##

# general definitions
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
infodir = @infodir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
datarootdir = @datarootdir@
VPATH = @srcdir@
usdxrootdir = @usdxrootdir@
logrootdir = @logrootdir@

INSTALL_PATH_SUFFIX = @suffix@
INSTALL_datadir = $(datarootdir)/$(INSTALL_PATH_SUFFIX)
INSTALL_logdir = $(logrootdir)/$(INSTALL_PATH_SUFFIX)

@SET_MAKE@

# recursive dir creation tool
MKDIR_P = @MKDIR_P@
# install tool
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
# calls "ln -s"
LN_S = @LN_S@

# Package configuration
USDX_PACKAGE_NAME = @PACKAGE_NAME@
# should be $(USDX_PACKAGE_NAME) instead
USDX_PREFIX = UltraStar
USDX_VERSION = @PACKAGE_VERSION@
USDX_TARNAME = @PACKAGE_TARNAME@

USDX_TOOLS_DIR = $(usdxrootdir)/Tools
USDX_LIB_DIR   = ./lib
USDX_BUILD_DIR = ./build

# file-type suffix of executables (e.g. ".exe" in windows)
EXE_SUFFIX = @EXEEXT@

# Free Pascal compiler
PPC = @PPC@
# FPC target platform and processor
PPLATFORM = @FPC_PLATFORM@
PPROCESSOR = @FPC_PROCESSOR@

EXTRA_SRCDIRS =

# RC resource extraction config
RESEXTRACTOR_NAME = ResourceExtractor
RESEXTRACTOR_DIR = $(USDX_TOOLS_DIR)/$(RESEXTRACTOR_NAME)
RESEXTRACTOR_BIN = $(RESEXTRACTOR_DIR)/$(RESEXTRACTOR_NAME)$(EXE_SUFFIX)
RESOURCE_DIR = $(usdxrootdir)/Resources
RESOURCE_FILE = resource.inc
EXTRA_SRCDIRS += $(RESEXTRACTOR_DIR)

# cwrapper settings
PROJECTM_CWRAPPER_DIR = $(USDX_LIB_DIR)/projectM/cwrapper
@COMMENT_PROJECTM_CWRAPPER@EXTRA_SRCDIRS += $(PROJECTM_CWRAPPER_DIR)

# Directories added to the unit path
PUNIT_TOKEN = -Fu
PUNIT_FLAGS = $(PUNIT_TOKEN).

# Directory where compiled units (.ppu and .o files) are stored
PCUNIT_TOKEN = -FU
PCUNIT_DIR = $(USDX_BUILD_DIR)/$(PPLATFORM)/fpc
PCUNIT_FLAGS = $(PCUNIT_TOKEN)$(PCUNIT_DIR)

# Directories added to the includes path
PINC_TOKEN = -Fi
PINC_FLAGS = $(PINC_TOKEN)$(USDX_LIB_DIR)/JEDI-SDL/SDL/Pas

# FPC flags

# The user can overwrite the default flags with
#   make PFLAGS_BASE="myflags"
PFLAGS_BASE = -S2gi -vB
# The user can specify additional flags with
#   make PFLAGS_EXTRA="myflags"
PFLAGS_EXTRA = @PFLAGS_EXTRA@
PFLAGS_DEBUG   = @PFLAGS_DEBUG@
PFLAGS_RELEASE = @PFLAGS_RELEASE@
# the user's flags (specified with configure) must be the last in
# the list to overwrite the defaults (e.g.with the - option: -Xs-).
PFLAGS = $(PFLAGS_BASE) @PFLAGS_MAKE@ $(PFLAGS_EXTRA)

LIBS = @LIBS@
LDFLAGS = @LDFLAGS@
linkflags = $(strip $(LDFLAGS) $(LIBS))
ifneq ($(linkflags),)
PLINKFLAGS = -k"$(linkflags)"
endif

# dpr project file used as input
USDX_SRC = $(USDX_PREFIX).dpr
# name of executable
USDX_BIN_NAME = $(USDX_PREFIX)$(EXE_SUFFIX)
USDX_BIN = $(usdxrootdir)/$(USDX_BIN_NAME)

modfile = lastmod

.PHONY: debug release recursive all recursive-all dependencies install install-local install-global install-data install-data-recursive install-exec uninstall uninstall-local uninstall-global uninstall-data uninstall-exec clean recursive-clean distclean recursive-distclean clean_obj clean_res dist debian-package update-modfile $(EXTRA_SRCDIRS)

debug: PFLAGS = $(PFLAGS_BASE) $(PFLAGS_DEBUG) $(PFLAGS_EXTRA)
debug: all

release: PFLAGS = $(PFLAGS_BASE) $(PFLAGS_RELEASE) $(PFLAGS_EXTRA)
release: all

all: recursive-all update-modfile dependencies $(USDX_BIN)

recursive-all: recursive-target = all
recursive-all: recursive

dependencies: $(RESOURCE_FILE)

# call Makefiles in other source-dirs
recursive: $(EXTRA_SRCDIRS)
$(EXTRA_SRCDIRS):
	$(MAKE) -C $@ $(recursive-target)

# clean old data before compiling, otherwise FPC might miss some changes.
$(USDX_BIN): lastmod 
	$(MAKE) clean_obj
	mkdir -p "$(PCUNIT_DIR)"
	$(PPC) $(strip $(PFLAGS) $(PDEFINES) $(PLINKFLAGS) $(PINC_FLAGS) $(PUNIT_FLAGS) $(PCUNIT_FLAGS)) -o$@ $(USDX_SRC)

install: all install-@install_type@

uninstall: uninstall-@install_type@


# local build

install-local:

uninstall-local:
	rm -f "$(USDX_BIN)"


# global build

install-global: install-data install-exec
# TODO: to which user/group/rights must the logdir be set
# "drwxrwxrwx" might be too dangerous
#	$(MKDIR_P) $(INSTALL_logdir)
#	chmod ??? $(INSTALL_logdir)

install-data:
	$(MAKE) RECURSIVE_SRC_DIR="$(usdxrootdir)/Themes" RECURSIVE_DST_DIR="$(INSTALL_datadir)/Themes" install-data-recursive
	$(MAKE) RECURSIVE_SRC_DIR="$(usdxrootdir)/Sounds" RECURSIVE_DST_DIR="$(INSTALL_datadir)/Sounds" install-data-recursive
	$(MAKE) RECURSIVE_SRC_DIR="$(usdxrootdir)/Languages" RECURSIVE_DST_DIR="$(INSTALL_datadir)/Languages" install-data-recursive
	$(MAKE) RECURSIVE_SRC_DIR="$(usdxrootdir)/Skins" RECURSIVE_DST_DIR="$(INSTALL_datadir)/Skins" install-data-recursive
	$(MAKE) RECURSIVE_SRC_DIR="$(usdxrootdir)/Resources" RECURSIVE_DST_DIR="$(INSTALL_datadir)/Resources" install-data-recursive

install-data-recursive:
	$(MKDIR_P) "$(RECURSIVE_DST_DIR)"
	@for file in "$(RECURSIVE_SRC_DIR)"/*; do \
	  if test -f "$$file"; then \
	    echo $(INSTALL_DATA) "$$file" "$(RECURSIVE_DST_DIR)"; \
	    $(INSTALL_DATA) "$$file" "$(RECURSIVE_DST_DIR)"; \
	  fi; \
	  if test -d "$$file"; then \
	    subdir="$$file"; \
	    subdirname=`basename "$$subdir"`; \
	    $(MAKE) RECURSIVE_SRC_DIR="$$subdir" RECURSIVE_DST_DIR="$(RECURSIVE_DST_DIR)/$$subdirname" install-data-recursive; \
	  fi; \
	done

install-exec:
	$(MKDIR_P) "$(bindir)"
	$(INSTALL) "$(USDX_BIN)" "$(bindir)"

uninstall-global: uninstall-data uninstall-exec
	rmdir "$(INSTALL_logdir)"

uninstall-data:
# TODO: delete the directories created at the first execution of usdx too (like Screenshots/Playlists)
	rm -rf "$(INSTALL_datadir)/Themes"
	rm -rf "$(INSTALL_datadir)/Sounds"
	rm -rf "$(INSTALL_datadir)/Languages"
	rm -rf "$(INSTALL_datadir)/Skins"
	rm -rf "$(INSTALL_datadir)/Resources"
	rmdir "$(INSTALL_datadir)"

uninstall-exec:
	rm -f "$(bindir)/$(USDX_BIN_NAME)"

disttmpdir = ./distdir

dist:
# TODO: this needs some work
#	$(MKDIR_P) $(disttmpdir)
#	acm $(usdxrootdir) $(disttmpdir)
#	$(MAKE) -C $(disttmpdir)/Game/Code distclean 
#	tar cvzf $(USDX_TARNAME)-$(USDX_VERSION).tar.gz $(usdxrootdir)
	@echo "Comming soon"


debpkgoutdir = $(usdxrootdir)/packages
debpkgtmpdir = $(debpkgoutdir)/deb-package
# should be $(USDX_PACKAGE_NAME) instead
debpkgprefix = UltraStarDeluxe
debpkgname = $(debpkgprefix)_$(USDX_VERSION)_$(PPROCESSOR).deb

debian-package: $(debpkgname)

$(debpkgname): all
	rm -rf $(debpkgtmpdir)
	rm -rf $(debpkgoutdir)

	$(MKDIR_P) $(debpkgoutdir)
	$(MKDIR_P) $(debpkgtmpdir)/DEBIAN

	$(MAKE) prefix=$(debpkgtmpdir)/$(prefix) install

	$(INSTALL_DATA) $(debpkgprefix).control $(debpkgtmpdir)/DEBIAN/control

	dpkg-deb --build $(debpkgtmpdir)
	mv $(debpkgtmpdir)/../deb-package.deb $(debpkgoutdir)/$(debpkgname)

#	rm -rf $(debpkgtmpdir)

rpm: all
#	rpm 
	@echo "Coming soon"

macosx_bundle_path = ../../UltraStarDeluxe.app/Contents
macosx-app: all 
# Create double clickable Mac OS X application.

	@echo ""
	@echo "Creating the Mac OS X application"
	@echo ""
	install -d $(macosx_bundle_path)/MacOS
	install -d $(macosx_bundle_path)/Resources

# Strip symbols and copy the binary.
	install -s ../../UltraStar	$(macosx_bundle_path)/MacOS

# Put the icon file into its particular place. 
# Must be done BEFORE info.plist is created.
	install ../../Resources/Graphics/ustar-icon_v01.icns	$(macosx_bundle_path)/Resources/

# the info.plist file
	install MacOSX/Info.plist	$(macosx_bundle_path)/

# Copy the resources. 
# This should be replaced by something like install-data and 
# install-data-recursive and an adjusted prefix or so
	install -d 				$(macosx_bundle_path)/Resources/Artwork
	install ../../Artwork/*			$(macosx_bundle_path)/Resources/Artwork
	install -d 				$(macosx_bundle_path)/Resources/Languages
	install ../../Languages/*		$(macosx_bundle_path)/Resources/Languages
	install -d 					$(macosx_bundle_path)/Resources/Resources/Fonts/Bold
	install ../../Resources/Fonts/Bold/*		$(macosx_bundle_path)/Resources/Resources/Fonts/Bold/
	install -d 					$(macosx_bundle_path)/Resources/Resources/Fonts/Normal
	install ../../Resources/Fonts/Normal/*		$(macosx_bundle_path)/Resources/Resources/Fonts/Normal/
	install -d 					$(macosx_bundle_path)/Resources/Resources/Fonts/Outline\ 1
	install ../../Resources/Fonts/Outline\ 1/*	$(macosx_bundle_path)/Resources/Resources/Fonts/Outline\ 1/
	install -d 					$(macosx_bundle_path)/Resources/Resources/Fonts/Outline\ 2
	install ../../Resources/Fonts/Outline\ 2/*	$(macosx_bundle_path)/Resources/Resources/Fonts/Outline\ 2/
	install -d 				$(macosx_bundle_path)/Resources/Resources/Graphics
	install ../../Resources/Graphics/*	$(macosx_bundle_path)/Resources/Resources/Graphics/
	install -d 				$(macosx_bundle_path)/Resources/Resources/Sounds
	install ../../Resources/Sounds/*	$(macosx_bundle_path)/Resources/Resources/Sounds/
	install -d 				$(macosx_bundle_path)/Resources/Sounds
	install ../../Sounds/*			$(macosx_bundle_path)/Resources/Sounds
	install -d 				$(macosx_bundle_path)/Resources/Themes/Classic
	install ../../Themes/Classic/*		$(macosx_bundle_path)/Resources/Themes/Classic/
	install ../../Themes/Classic.ini	$(macosx_bundle_path)/Resources/Themes
	install -d 				$(macosx_bundle_path)/Resources/Themes/Deluxe
	install ../../Themes/Deluxe/*		$(macosx_bundle_path)/Resources/Themes/Deluxe/
	install ../../Themes/Deluxe.ini		$(macosx_bundle_path)/Resources/Themes
	install ../../License.txt		$(macosx_bundle_path)/Resources/

# the empty dirs
	install -d $(macosx_bundle_path)/Resources/Covers
	install -d $(macosx_bundle_path)/Resources/Logs
	install -d $(macosx_bundle_path)/Resources/Plugins
	install -d $(macosx_bundle_path)/Resources/Screenshots
	install -d $(macosx_bundle_path)/Resources/Visuals

# final messages
	@echo ""
	@echo "Mac OS X application created."
	@echo "Please report issues to the developer team, preferably mischi."
	@echo "Have fun."
	@echo ""

clean: recursive-clean clean_obj

recursive-clean: recursive-target = clean
recursive-clean: recursive

distclean: recursive-distclean clean clean_res
	find . -name "*.o" -o -name "*.ppu" -o -name "*.rst" -o -name "*.compiled" | xargs rm -f
	find . -name "*~" -name "*.bak" -o -name "*.orig" -o -name "*.dcu" | xargs rm -f
	find . -name "__history" | xargs rm -r -f
	rm -f "$(USDX_PREFIX).res" "$(USDX_PREFIX).identcache"
	rm -f config.inc Makefile config.log config.status configure aclocal.m4 
	rm -rf autom4te.cache

recursive-distclean: recursive-target = distclean
recursive-distclean: recursive

clean_obj:
	find "$(PCUNIT_DIR)" -name "*.o" -o -name "*.ppu" -o -name "*.rst" -o -name "*.compiled" | xargs rm -f
	rm -f "$(USDX_BIN)"

clean_res:
	rm -f "$(RESOURCE_FILE)"

$(RESOURCE_FILE): $(USDX_PREFIX).rc
	$(RESEXTRACTOR_BIN) $(USDX_PREFIX).rc $(RESOURCE_DIR) $(RESOURCE_FILE)


# FPC does not recognize changes correctly. E.g. sometimes changes in .inc-files or
# conditional .pas dependencies are ignored which results in corrupted builds.
# So check for changes with a modification timestamp.
update-modfile:
	test -e $(modfile) || touch $(modfile)
	find . \( -name "*.pas" -o -name "*.pp" -o -name "*.inc" -o -name "*.dpr" \) -newer $(modfile) -exec touch $(modfile) \;
	find $(USDX_LIB_DIR) -name "*.a" -newer $(modfile) -exec touch $(modfile) \;

Makefile: Makefile.in config.status
	./config.status

config.status: configure
	./config.status --recheck

configure: configure.ac config.inc.in aclocal.m4
	autoconf

aclocal.m4: m4/*
	aclocal -I m4