diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-01-23 18:15:14 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-01-24 08:56:33 -0800 |
commit | ae6b9eb2e16b570c39666fb4dea2e9222a3c2d8d (patch) | |
tree | 44c2d59c4836d565456174595dc7b4a75d708f76 /GNUmakefile | |
parent | 060390c8abeab1ec6bdc7964ed145b7a9ea5403b (diff) | |
download | serverdata-ae6b9eb2e16b570c39666fb4dea2e9222a3c2d8d.tar.gz serverdata-ae6b9eb2e16b570c39666fb4dea2e9222a3c2d8d.tar.bz2 serverdata-ae6b9eb2e16b570c39666fb4dea2e9222a3c2d8d.tar.xz serverdata-ae6b9eb2e16b570c39666fb4dea2e9222a3c2d8d.zip |
Implement news generation
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 590b111e..508cfea2 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,7 +1,7 @@ -.PHONY: all maps conf mobxp mobxp-impl indent indent-items indent-mobs +.PHONY: all maps conf mobxp mobxp-impl indent indent-items indent-mobs news # Can't be parallel due to the mobxp/indent-mobs conflict .NOTPARALLEL: -all: maps conf +all: maps conf news maps: tools/tmx_converter.py client-data/ world/map/ @@ -22,3 +22,8 @@ indent-items: tools/aligncsv tools/aligncsv world/map/db/item_db.txt indent-mobs: tools/aligncsv tools/aligncsv world/map/db/mob_db.txt + +world/map/news.txt world/map/news.html: tools/news.py tools/_news_colors.py world/map/news.d/* + tools/news.py world/map/ world/map/news.d/ + +news: world/map/news.txt world/map/news.html |