## makefile for s u l a
##
##     Tano Fotang, 1997
##
## Either type "make" to build and install, 
## Or
## 	1. make config
##	2. make depend
##	3. make bin
##	4. make install
##
## 	("make bin" produces an executable "sula" in the directory "src".
##	that is the program)

CC=gcc

all:
	@(make config; cd src; make all)

bins: aux bin
bin:
	@(cd src; make sula)

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)

clean:
	@(cd src; make clean)

