mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* common/Actuate.h, common/Makefile.am, common/custom.cpp, common/op_switch.h, common/operations.cpp: Add Actuate to the cyphesis core custom operations. * rulesets/Entity.cpp, rulesets/Entity.h, rulesets/Character.cpp: Add handlers for Actuate to the operation routing interface. * data/devices.xml: Add example device. * data/Makefile.am: Add new devices file. * data/operations.xml: Remove temporary soft Actuate definition.
20 lines
683 B
Makefile
20 lines
683 B
Makefile
EXTRA_DIST = acorn.xml werewolf.xml
|
|
|
|
MASON_RULES = animals.xml basic.xml buildings.xml characters.xml clothing.xml \
|
|
construction.xml devices.xml food.xml mason.xml operations.xml \
|
|
plants.xml tasks.xml terrain.xml tools.xml weapons.xml
|
|
|
|
confdir = $(sysconfdir)/cyphesis
|
|
dist_conf_DATA = cyphesis.vconf
|
|
|
|
rulesetdir = $(sysconfdir)/cyphesis/mason.d
|
|
dist_ruleset_DATA = $(MASON_RULES)
|
|
|
|
confbackupdir = $(datadir)/doc/cyphesis-$(VERSION)/conf
|
|
confbackup_DATA = cyphesis.vconf $(MASON_RULES) acorn.xml werewolf.xml
|
|
|
|
check-local:
|
|
@for rule in $(MASON_RULES) ; do \
|
|
echo $(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
$(XMLLINT) -noout $(srcdir)/$$rule; \
|
|
done;
|