# @(#)makefile	19.1 (ESO-IPG) 02/25/03 14:35:23
# .COPYRIGHT:	Copyright (c) 1988 European Southern Observatory,
#						all rights reserved
# .TYPE		make file
# .NAME		$MIDASHOME/$MIDVERS/test/bench/makefile 
# .LANGUAGE	makefile syntax
# .ENVIRONMENT	Unix Systems. 
# .COMMENT	Compiles source files and generates "benchmark" commands
#
# .REMARKS	
# .AUTHOR	C. Guirao
# .VERSION 1.1	880831:		Implementation
# .VERSION 2.2  920521:         Removing MLIB CG
# .VERSION 3.0  930308:		Using default.mk file

include ../../local/default.mk

#OUT =	ben_sread.exe ben_rread.exe ben_write.exe \
#	ben_memory.exe ben_maxmem.exe ben_fpu.exe
OUT =	ben_fpu.exe

# DEPENDENCIES;
all: $(OUT)

ben_fpu.exe: ben_fpu.o 
	$(LDCC) ben_fpu.o $(MLIB) $(SLIB) -o $@
	$(STRIP) $@

clean: 
	rm -f *.o *.f *.exe

run:
	brun 2
