13 lines
347 B
Makefile
13 lines
347 B
Makefile
|
|
.PHONY: default
|
||
|
|
|
||
|
|
default: remontel.ulx
|
||
|
|
|
||
|
|
remontel.ulx: remontel.inf Rooms.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h
|
||
|
|
inform -G +include_path=,lib remontel.inf
|
||
|
|
|
||
|
|
remontel.z5: remontel.inf Rooms.inf lib/Parser.h lib/VerbLib.h lib/Grammar.h
|
||
|
|
inform +include_path=,lib remontel.inf
|
||
|
|
|
||
|
|
lib/Parser.h lib/VerbLib.h lib/Grammar.h:
|
||
|
|
$(MAKE) -C lib Parser.h
|