# Makefile for Rogue
# If Rogue does not compile, check whether the includes and library
# paths are set correctly for your system in the makefile. If not,
# correct them and use appropriate paths
#
# Rogue Copyright 2005 Pallav Nawani
# Scare runner is copyright Simon Baldwin
#

all: Makefile
	make -C agility/ onlyobjs -f Makefile.plain
	make -C scare-1.3.2-custom/ scareobjs
	make -C tads2/ tads2objs
	make -C tads3/ rogueobjs
	make -C rogue/

clean:
	rm -f scare-1.3.2-custom/*.o agility/*.o
	make -C rogue/ clean
	make -C tads2/ clean
	make -C tads3/ clean
			       
install:
	install -s rogue/rogue /usr/bin





