mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
16 lines
616 B
Makefile
16 lines
616 B
Makefile
RULES = animals.xml basic.xml buildings.xml characters.xml clothing.xml \
|
|
construction.xml devices.xml food.xml deeds.xml operations.xml \
|
|
plants.xml properties.xml tasks.xml terrain.xml tools.xml \
|
|
weapons.xml characters_archetypes.xml terrain_archetypes.xml plants_archetypes.xml
|
|
|
|
rulesetdir = $(sysconfdir)/cyphesis/deeds.d
|
|
dist_ruleset_DATA = $(RULES)
|
|
|
|
confbackupdir = $(datadir)/doc/cyphesis-$(VERSION)/conf/deeds
|
|
confbackup_DATA = $(RULES)
|
|
|
|
check-local:
|
|
@for rule in $(MINIMAL_RULES) ; do \
|
|
echo $(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
$(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
done;
|