cyphesis/data/minimal/Makefile.am
Erik Ogenvik 2dca4949ed Created "deeds" ruleset and made it default.
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.
2013-11-15 21:14:47 +01:00

15 lines
433 B
Makefile

MINIMAL_RULES = basic.xml characters.xml environment.xml terrain.xml
confdir = $(sysconfdir)/cyphesis
rulesetdir = $(sysconfdir)/cyphesis/minimal.d
dist_ruleset_DATA = $(MINIMAL_RULES)
confbackupdir = $(datadir)/doc/cyphesis-$(VERSION)/conf/minimal
confbackup_DATA = $(MINIMAL_RULES)
check-local:
@for rule in $(MINIMAL_RULES) ; do \
echo $(XMLLINT) -noout $(srcdir)/$$rule; \
$(XMLLINT) -noout $(srcdir)/$$rule; \
done;