######################################################################
#
#  Name ................................ LiDIA/src/interfaces/makefile 
#
#  Architecture : sparc7, sparc8, mips, linux, os2
#  Compiler     : gcc, g++ 
#  Flags        : -g -O2
#  Program Flags: -DDEBUG, -DMEMORY, -DERRIGN 
#  Author       : Papanikolaou Thomas & Stefan Neis
#  Release      : 1.0 
#  Last Change  : Mon Apr 11 16:09:08 MET DST 1994 
#  Copyright    : by the University of Saarland, 1994 
#

#
# include the configuration file
#

include ../../config/CONFIG

#
# Rules
#

all:
	cd integers$(DIRSEP)$(BIGINT) $(SEP) $(MAKE)
	cd memory$(DIRSEP)$(GMM) $(SEP) $(MAKE)
	cd udigit$(DIRSEP)generic $(SEP) $(MAKE)

appl:
	cd integers$(DIRSEP)$(BIGINT) $(SEP) $(MAKE) appl
	cd udigit$(DIRSEP)generic $(SEP) $(MAKE) appl

#
# Clean
#

clean:
	cd integers$(DIRSEP)$(BIGINT) $(SEP) $(MAKE) clean
	cd memory$(DIRSEP)$(GMM) $(SEP) $(MAKE) clean
	cd udigit$(DIRSEP)generic $(SEP) $(MAKE) clean

veryclean: clean
	cd integers$(DIRSEP)$(BIGINT) $(SEP) $(MAKE) veryclean
	cd memory$(DIRSEP)$(GMM) $(SEP) $(MAKE) veryclean
	cd udigit$(DIRSEP)generic $(SEP) $(MAKE) veryclean

#
# End Of Makefile
#
