mirror of
https://github.com/chenasraf/aardwolf.git
synced 2026-05-17 17:38:10 +00:00
23 lines
766 B
Makefile
23 lines
766 B
Makefile
MUSHDIR=$(HOME)/Library/Application Support/CrossOver/Bottles/MushClient/drive_c/users/crossover/MUSHclient
|
|
PLUGDIR=$(MUSHDIR)/worlds/plugins
|
|
|
|
.PHONY: install/spellbook
|
|
install/spellbook:
|
|
cp "./Spellbook/Spellbook.xml" "$(PLUGDIR)"
|
|
@echo "Spellbook installed."
|
|
|
|
.PHONY: watch/spellbook
|
|
watch/spellbook:
|
|
@echo "Watching for changes in Spellbook..."
|
|
@fswatch -o "./Spellbook/Spellbook.xml" | xargs -n1 -I{} make install/spellbook
|
|
|
|
.PHONY: install/spellrotation
|
|
install/spellrotation:
|
|
cp "./SpellRotation/SpellRotation.xml" "$(PLUGDIR)"
|
|
@echo "SpellRotation installed."
|
|
|
|
.PHONY: watch/spellrotation
|
|
watch/spellrotation:
|
|
@echo "Watching for changes in SpellRotation..."
|
|
@fswatch -o "./SpellRotation/SpellRotation.xml" | xargs -n1 -I{} make install/spellrotation
|