######################################################################
#
#  Name ................................................. src makefile 
#
#  Architecture : sparc7, sparc8, 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

#
#
#

all:
	echo Nothing to be done.

appl: vector_appl$(EXE)

vector_appl$(EXE):	$(LIDIA_INC)$(DIRSEP)LiDIA$(DIRSEP)vector.h vector_appl.c
	$(CPP) $(CPPFLAGS) vector_appl.c $(CPP-off) -I$(LIDIA_INC) -L$(LIDIA_LIB) -o vector_appl$(EXE) $(LIB)
	-$(MV) vector_appl$(EXE) $(LIDIA_BIN)

#
# Clean
#

clean:
	-$(RM) *.o 
	-$(RMR) ptrepository

veryclean:	clean
	-$(RM) vector_appl$(EXE)

