Last change
on this file since 464 was 420, checked in by alloc, 20 months ago |
A21 preparations.
NOT COMPATIBLE WITH A20 ANYMORE!
|
File size:
1.2 KB
|
Line | |
---|
1 | HOST=136.243.11.25
|
---|
2 | PORT=51010
|
---|
3 | SERVERPATH=/srv/www/illy.bz/http/fi/7dtd/
|
---|
4 |
|
---|
5 | $(shell cd .. && ./versions.sh > bin/Mods/Allocs_CommonFunc/7dtd-server-fixes_version.txt)
|
---|
6 | VERSIONFILE=../bin/Mods/Allocs_CommonFunc/7dtd-server-fixes_version.txt
|
---|
7 | VERSION=$(shell cat ${VERSIONFILE} | grep "Combined" | cut -d\ -f2)
|
---|
8 | ARCHIVENAME=server_fixes_v${VERSION}.tar.gz
|
---|
9 |
|
---|
10 | build: CONTENTS ${ARCHIVENAME}
|
---|
11 | @echo Bundle built successfully
|
---|
12 |
|
---|
13 | all: build upload
|
---|
14 | @echo Bundle built and uploaded
|
---|
15 |
|
---|
16 | upload: ${ARCHIVENAME}
|
---|
17 | @echo Uploading files...
|
---|
18 | @scp -P ${PORT} ${ARCHIVENAME} ${VERSIONFILE} ${HOST}:${SERVERPATH}
|
---|
19 | @ssh -p ${PORT} ${HOST} "cd ${SERVERPATH}; rm -f server_fixes.tar.gz; ln -s ${ARCHIVENAME} server_fixes.tar.gz"
|
---|
20 |
|
---|
21 | ${ARCHIVENAME}: CONTENTS
|
---|
22 | @echo Creating archive...
|
---|
23 | @tar -czf ${ARCHIVENAME} Mods
|
---|
24 |
|
---|
25 | CONTENTS: SERVERFIXES
|
---|
26 |
|
---|
27 | SERVERFIXES:
|
---|
28 | @echo Copying server fixes...
|
---|
29 | @rm Mods -Rf
|
---|
30 | @mkdir -p Mods
|
---|
31 | @cp ../bin/Mods/* Mods/ -R
|
---|
32 | @mkdir -p Mods/Allocs_WebAndMapRendering/webserver_legacy
|
---|
33 | @cp ../webserver_legacy/* Mods/Allocs_WebAndMapRendering/webserver_legacy/ -R
|
---|
34 | @rm Mods/Allocs_WebAndMapRendering/webserver_legacy/protect -f
|
---|
35 | @find . -name "*~" -exec rm {} \;
|
---|
36 |
|
---|
37 | clean:
|
---|
38 | @echo Cleaning intermediate stuff...
|
---|
39 | @rm -Rf Mods server_fixes_v*.tar.gz
|
---|
40 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.