summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-06-25 07:58:28 -0300
committerJesusaves <cpntb1@ymail.com>2020-06-25 07:58:28 -0300
commit0093ab126ea08777eefcd3ba6cc6f6edb382a999 (patch)
tree7b0eb64e9073dc1487c4d753f6e212a0e16c4c95 /Makefile
parentd75eac7952906dae03589c614483bccf481cce5c (diff)
downloadtools-0093ab126ea08777eefcd3ba6cc6f6edb382a999.tar.gz
tools-0093ab126ea08777eefcd3ba6cc6f6edb382a999.tar.bz2
tools-0093ab126ea08777eefcd3ba6cc6f6edb382a999.tar.xz
tools-0093ab126ea08777eefcd3ba6cc6f6edb382a999.zip
New make command: `make cnomini`
Skips minimaps, not meant to be widely used
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c94f855..7326412 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ all:
@echo "news - propagate web information"
@echo "translation - fetches Transifex translations for server, and updates both."
@echo "client - generate weapons.xml, minimaps and daily.xml"
+ @echo "cnomini - generate client-data except minimaps"
@echo "full - make contrib + wiki + translation + client + update + news"
contrib:
@@ -61,6 +62,14 @@ news:
.PHONY: client
client:
+ @cd client ; ./minimap-render.py all
+ @cd client ; ./minimap-dyecmd.py ; ./minimap-dyecmd.sh
+ cp client/minimap-override/* ../client-data/graphics/minimaps/
+ @git checkout -- client/minimap-dyecmd.sh
+ make cnomini
+
+.PHONY: cnomini
+cnomini:
@cd client ; ./weapons.py
@cd client ; ./dailylogin.py
@cd client ; ./aurora.py
@@ -69,10 +78,6 @@ client:
@cd client ; mv daily.tmp ../../client-data/graphics/images/daily.xml
@cd client ; mv aurora.tmp ../../client-data/graphics/images/aurora.xml
@cd client ; mv skills.tmp ../../client-data/mana_skills.xml
- @cd client ; ./minimap-render.py all
- @cd client ; ./minimap-dyecmd.py ; ./minimap-dyecmd.sh
- cp client/minimap-override/* ../client-data/graphics/minimaps/
- @git checkout -- client/minimap-dyecmd.sh
@cd contrib_xsl ; make about-server
@echo "XML files and minimaps updated, please commit result on client-data."