This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
rpgskeleton/Makefile
2014-04-23 21:59:50 -07:00

18 lines
379 B
Makefile

PROJECT := $(shell pwd)
TYPE := ace
YAML/%.yaml : Data/%.rvdata2
rvpacker -d $(PROJECT) -t $(TYPE) -a unpack -D $*
Data/%.rvdata2: YAML/%.yaml
rvpacker -d $(PROJECT) -t $(TYPE) -a pack -D $*
datafiles := $(patsubst %.yaml,%.rvdata2,$(wildcard YAML/*.yaml))
yamlfiles := $(patsubst %.rvdata2,%.yaml,$(wildcard Data/*.rvdata2))
unpack: $(yamlfiles)
pack: $(datafiles)
all: