-
Notifications
You must be signed in to change notification settings - Fork 10
/
linux.mk
99 lines (81 loc) · 3.17 KB
/
linux.mk
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
# Linux Makefile for QSanguosha
# Author: pansz at github
#
# you can use the following to compile the first time:
#
# make -f linux.mk
#
# Next time you could just use 'make'
#
# This makefile only works for GNU Linux and don't try it on other platforms.
#
PREFIX:=/usr/local
OLDPWD:=$(PWD)
BUILD:=$(OLDPWD)_build
DEBUG_BUILD:=$(OLDPWD)_debugbuild
all: sanguosha.qm
debug: debugQSanguosha
debugQSanguosha: $(DEBUG_BUILD)/QSanguosha
cp $(DEBUG_BUILD)/QSanguosha debugQSanguosha
@rm $(DEBUG_BUILD)/QSanguosha
$(BUILD)/libfmodex.so:
mkdir -p $(BUILD)
@echo "NOTE: if you had installed fmodex please copy the .so file from /usr/local/lib/ to $(BUILD)/libfmodex.so"
@ls $@
$(DEBUG_BUILD)/libfmodex.so:
mkdir -p $(DEBUG_BUILD)
@echo "NOTE: if you had installed fmodex please copy the .so file from /usr/local/lib/ to $(DEBUG_BUILD)/libfmodex.so"
@ls $@
swig/sanguosha_wrap.cxx: swig/ai.i swig/card.i swig/list.i swig/luaskills.i swig/native.i swig/naturalvar.i swig/qvariant.i swig/sanguosha.i
cd swig && swig -c++ -lua sanguosha.i
$(BUILD)/Makefile: $(OLDPWD)/QSanguosha.pro
cd $(BUILD) && qmake $(OLDPWD)/QSanguosha.pro "CONFIG+=release"
$(DEBUG_BUILD)/Makefile: $(OLDPWD)/QSanguosha.pro
cd $(DEBUG_BUILD) && qmake $(OLDPWD)/QSanguosha.pro "CONFIG+=debug"
$(BUILD)/swig/sanguosha_wrap.cxx: swig/sanguosha_wrap.cxx
mkdir -p $(BUILD)/swig
cp $(PWD)/swig/sanguosha_wrap.cxx $(BUILD)/swig/sanguosha_wrap.cxx
$(DEBUG_BUILD)/swig/sanguosha_wrap.cxx: swig/sanguosha_wrap.cxx
mkdir -p $(DEBUG_BUILD)/swig
cp $(PWD)/swig/sanguosha_wrap.cxx $(DEBUG_BUILD)/swig/sanguosha_wrap.cxx
$(BUILD)/QSanguosha: $(BUILD)/libfmodex.so $(BUILD)/swig/sanguosha_wrap.cxx $(BUILD)/Makefile
@echo "PWD is: $(OLDPWD)"
@ln -sf linux.mk Makefile
cd $(BUILD) && $(MAKE)
@rm -f QSanguosha
@cp $(BUILD)/QSanguosha QSanguosha
$(DEBUG_BUILD)/QSanguosha: $(DEBUG_BUILD)/libfmodex.so $(DEBUG_BUILD)/swig/sanguosha_wrap.cxx $(DEBUG_BUILD)/Makefile
@echo "PWD is: $(OLDPWD)"
@ln -sf linux.mk Makefile
cd $(DEBUG_BUILD) && $(MAKE)
@rm -f QSanguosha
sanguosha.qm: $(BUILD)/QSanguosha sanguosha.ts
lupdate QSanguosha.pro
lrelease QSanguosha.pro
@cp builds/vs2010/sanguosha.qm sanguosha.qm
@echo "Well, compile done. Now you can run make install with root "
install: $(BUILD)/QSanguosha
mkdir -p $(PREFIX)/games
mkdir -p $(PREFIX)/share/QSanguosha
rm -rf $(PREFIX)/share/QSanguosha/*
install -s $(BUILD)/QSanguosha $(PREFIX)/games/QSanguosha
cp -r acknowledgement $(PREFIX)/share/QSanguosha/.
cp -r audio $(PREFIX)/share/QSanguosha/.
cp -r backdrop $(PREFIX)/share/QSanguosha/.
cp -r developers $(PREFIX)/share/QSanguosha/.
cp -r diy $(PREFIX)/share/QSanguosha/.
cp -r font $(PREFIX)/share/QSanguosha/.
cp -r image $(PREFIX)/share/QSanguosha/.
cp -r lang $(PREFIX)/share/QSanguosha/.
cp -r lua $(PREFIX)/share/QSanguosha/.
cp -r scenarios $(PREFIX)/share/QSanguosha/.
cp -r skins $(PREFIX)/share/QSanguosha/.
cp gpl-3.0.txt $(PREFIX)/share/QSanguosha/COPYING
cp sanguosha.qm $(PREFIX)/share/QSanguosha/.
cp sanguosha.qss $(PREFIX)/share/QSanguosha/.
clean:
-cd $(BUILD) && $(MAKE) clean
distclean:
-cd $(BUILD) && $(MAKE) distclean
rm -f QSanguosha Makefile swig/sanguosha_wrap.cxx sanguosha.qm
.PHONY: $(BUILD)/QSanguosha debug