mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
It's currently a copy of the Mason ruleset. Where Mason focuses on letting the users create the world themselves, Deeds instead focuses on allowing world authors to set up enticing worlds with gameplay and stories. In contrast to Mason there are more features available to the world authors which allow for automatic creation of entities and so on.
16 lines
545 B
Makefile
16 lines
545 B
Makefile
RULES = animals.xml basic.xml buildings.xml characters.xml clothing.xml \
|
|
construction.xml devices.xml food.xml mason.xml operations.xml \
|
|
plants.xml properties.xml tasks.xml terrain.xml tools.xml \
|
|
weapons.xml
|
|
|
|
rulesetdir = $(sysconfdir)/cyphesis/mason.d
|
|
dist_ruleset_DATA = $(RULES)
|
|
|
|
confbackupdir = $(datadir)/doc/cyphesis-$(VERSION)/conf/mason
|
|
confbackup_DATA = $(RULES)
|
|
|
|
check-local:
|
|
@for rule in $(MINIMAL_RULES) ; do \
|
|
echo $(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
$(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
done;
|