forked from project-ethea/After_the_Storm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Makefile rules from codename Naia
- Loading branch information
Showing
1 changed file
with
9 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,24 @@ | ||
# Run validation tests | ||
|
||
WESNOTH = wesnoth-1.12 | ||
ADDON_NAME := After_the_Storm | ||
|
||
WESNOTH_VERSION ?= $(shell $(WESNOTH) --version 2>&1 | head -n 1) | ||
WESNOTH_DATA_DIR ?= $(shell $(WESNOTH) --path 2>&1 | tail -n 1) | ||
WESNOTH_CORE_DIR ?= $(WESNOTH_DATA_DIR)/data/core | ||
CAMPAIGNSYM := CAMPAIGN_AFTER_THE_STORM | ||
|
||
ADDON_NAME=After_the_Storm | ||
DIST_VERSION_FILE := dist/VERSION | ||
DIST_PASSPHRASE_FILE := ~/.wesnoth-pbl-pass | ||
|
||
DIST_VERSION_FILE=dist/VERSION | ||
DIST_PASSPHRASE_FILE=~/.wesnoth-pbl-pass | ||
|
||
DEFSCOPE ?= macro-scope-check | ||
WMLLINT ?= wmllint-1.12 -d | ||
WMLINDENT ?= wmlindent-1.12 | ||
WMLXGETTEXT ?= wmlxgettext-1.12 | ||
OPTIPNG ?= wesnoth-optipng | ||
WML_PREPROCESS ?= $(WESNOTH) -p | ||
|
||
AUTO_DELTEMP ?= 1 | ||
|
||
MAKEFLAGS += -rR --no-print-directory | ||
|
||
# Internal variables | ||
|
||
targetdir := $(realpath .) | ||
|
||
campaignsym := CAMPAIGN_AFTER_THE_STORM | ||
|
||
difficulties := EASY NORMAL HARD | ||
packs := \ | ||
DIFFICULTIES := EASY NORMAL HARD | ||
PACKS := \ | ||
CAMPAIGN_AFTER_THE_STORM_EPISODE_I \ | ||
CAMPAIGN_AFTER_THE_STORM_EPISODE_II \ | ||
CAMPAIGN_AFTER_THE_STORM_EPISODE_III | ||
|
||
extrasyms := __TEST_SUITE__ | ||
|
||
textdomain = wesnoth-$(ADDON_NAME) | ||
|
||
dist_version ?= $(shell cat $(DIST_VERSION_FILE)) | ||
dist_passphrase ?= $(shell sed -nE '/^$(ADDON_NAME)=(.*)$$/ { s//\1/; p; q }' $(DIST_PASSPHRASE_FILE)) | ||
|
||
all: defscope lint | ||
|
||
indent: | ||
$(WMLINDENT) . | ||
|
||
defscope: | ||
$(DEFSCOPE) $(wildcard ./episode?/scenarios) | ||
|
||
lint: | ||
$(WMLLINT) $(WESNOTH_CORE_DIR) $(targetdir) | ||
|
||
*.pbl: $(DIST_VERSION_FILE) $(DIST_PASSPHRASE_FILE) | ||
|
||
%.pbl: %.pbl.in | ||
@echo " PBL $@" | ||
@echo $(dist_version) | fgrep -vq 'dev' || ( echo "WARNING: Not a production release: $(dist_version)" && true ) | ||
@sed 's/@VERSION@/$(dist_version)/; s/@PASSPHRASE@/$(dist_passphrase)/' $< > $@ | ||
|
||
pbl: _server.pbl | ||
|
||
test: | ||
@echo "Running preprocessor/parser test pass..." | ||
@echo " Version: $(WESNOTH_VERSION)" | ||
@echo " Difficulties: $(difficulties)" | ||
@echo " Episodes: $(packs)" | ||
|
||
@for p in $(packs); do for d in $(difficulties); do \ | ||
echo " TEST $$p -> $$d"; \ | ||
$(WML_PREPROCESS) $(targetdir) .preprocessor.out --preprocess-defines $(extrasyms),$(campaignsym),$$d,$$p 2>&1 | tail -n +5 ; \ | ||
test "$(AUTO_DELTEMP)" -ne 0 && rm -rf .preprocessor.out; true; \ | ||
done; done | ||
|
||
stats: | ||
@echo "Gathering WML statistics" | ||
@echo " Version: $(WESNOTH_VERSION)" | ||
@echo " Difficulties: $(difficulties)" | ||
@echo " Episodes: $(packs)" | ||
|
||
@for p in $(packs); do for d in $(difficulties); do \ | ||
echo " WML $$p -> $$d"; \ | ||
$(WML_PREPROCESS) $(targetdir) .preprocessor.out --preprocess-defines $(extrasyms),$(campaignsym),$$d,$$p 2>&1 2> /dev/null; \ | ||
wc -lcm .preprocessor.out/_main.cfg | awk '{printf " %u lines, %u characters (%1.0f KiB)\n", $$1, $$2, $$3 / 1024}'; \ | ||
test "$(AUTO_DELTEMP)" -ne 0 && rm -rf .preprocessor.out; true; \ | ||
done; done | ||
|
||
optipng: | ||
$(OPTIPNG) | ||
|
||
%.pot: | ||
@echo " POT $*.pot" | ||
@find . \( -name '*.cfg' -o -name '*.lua' \) -type f -print0 | xargs -0 $(WMLXGETTEXT) --directory=$(targetdir) --domain $(textdomain) > $*.pot | ||
@msgfmt --statistics -o /dev/null $*.pot 2>&1 | sed -E 's/^.*\s([0-9]+)\s.*$$/ \1 strings/' | ||
include ../naia/tools/Makefile.wmltools | ||
|
||
pot: $(textdomain).pot | ||
pot: local-pot | ||
|
||
normalize-textdomains: | ||
find . \( -name '*.cfg' -o -name '*.lua' \) -type f -print0 | xargs -0 \ | ||
sed -ri 's/wesnoth-(Invasion_from_the_Unknown|Era_of_Chaos)/wesnoth-After_the_Storm/' | ||
|
||
clean: | ||
$(WMLLINT) --clean $(targetdir) | ||
find \( -name '*.new' -o -name '*.tmp' -o -name '*.pot' -o -name '*.orig' -o -name '*.rej' -o -name '*.map.cfg' -o -name '*.pbl' \) -type f -print0 | xargs -0 rm -f | ||
rm -rf .preprocessor.out | ||
clean: clean-wmltools |