17 lines
366 B
Makefile
17 lines
366 B
Makefile
.PHONY: default
|
|
|
|
libs = lib/Parser.h lib/VerbLib.h lib/Grammar.h
|
|
|
|
default: remontel.ulx remontel.z5
|
|
|
|
remontel.ulx: remontel.inf includes/*.inf $(libs)
|
|
inform -G +include_path=includes,lib $<
|
|
|
|
remontel.z5: remontel.inf includes/*.inf $(libs)
|
|
inform +include_path=includes,lib $<
|
|
|
|
lib/%.h:
|
|
$(MAKE) -C '$(@D)' '$(@F)'
|
|
|
|
script.pdf: script.fountain
|
|
screenplain $< $@
|