# Copyright (C) 1994 Mauro Gaspari - Dipartimento di Matematica,
# University on Bologna, Italy. 

# MAKEFILE
# RDIR: the directory which contains the sources
RDIR=$(SP_PATH)/library/fw_rules

# SICSTUS: your SICStus Prolog Directory
SDIR=$(SP_PATH)

# You don't normally need to change anything below.

fw_rules.pl:
	echo "rules_dir('$(RDIR)'). \
	sp_dir('$(SDIR)')." \
	| cat $(RDIR)/fw_rulesgen.pl - > '$(RDIR)/fw_rules.pl' 

clean:
	rm fw_rules.pl

again: clean fw_rules.pl

	



















