## makefile for s u l a
##
##     Tano Fotang, fotang@yahoo.com 1998
##
##	make	 : build everything
##	make bin : build just the executable (src/spx or src/sula)
##	
##

CC=gcc

bin:
	@(cd src && make sula)
all:
	@(make config; cd src; make all)
test:
	@echo -e "Testing...\n"
	(src/sula  -spxrc conf/startup-demo.scm -boot conf -libdir . &)
aux:
	@(cd src && make sulahp)
dep:depend
depend:
	@(cd src && make depend)

install:
	@(cd src && make install)
install_home:
	@(cd src && make install_home)
config: 
	@(cd src && make config)
modules:
	@(cd trill && make)
modules_install:
	-@(cd trill && make install)
clean:
	@(cd src && make clean)

