######################################################################
#
#  Name ................. LiDIA/src/interfaces/memory/dentzer/makefile
#
#  Architecture : sparc7, sparc8, mips. linux , os2
#  Compiler     : gcc, g++ 
#  Flags        : -g -O2
#  Program Flags: -DDEBUG, -DMEMORY, -DERRIGN 
#  Author       : Thomas Papanikolaou & 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

#
#
#

OBJ=new.o

#
# Rules
#

#
# Uncomment $(libp)LiDIA.a to compile new.o: this files includes
# oveloadings of the global new & delete operators. At the moment
# this feature has been only tested with g++ and may not work with
# other compilers.
#
 
all:	copyh # $(libp)LiDIA.a

#
# Dependencies
# 

copyh:
	-$(CP) gmm.h $(LIDIA_HOME)$(DIRSEP)include$(DIRSEP)LiDIA

#
# The library of all these functions
#
 
$(libp)LiDIA.a: $(OBJ)
	$(AR) $(LIDIA_LIB)$(DIRSEP)$(libp)LiDIA.a $(objp)$(OBJ)

ranlib:
	$(RANLIB) $(LIDIA_LIB)$(DIRSEP)$(libp)LiDIA.a

#
# Clean
#
 
clean:
	-$(RM) *.o 
	  
veryclean:	clean 
	-$(RM) test01$(EXE) 
	-$(RM) test02$(EXE) 
			   
distclean:	veryclean

#
# End Of Makefile
#
