# @(#)makefile	19.1 (ESO-IPG) 02/25/03 14:35:55
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
#                                               all rights reserved
# .TYPE         make file
# .NAME         $MIDASHOME/$MIDVERS/util/bench/whet/makefile
# .LANGUAGE     makefile syntax
# .ENVIRONMENT  Unix Systems.
# .COMMENT 
#
# .REMARKS
# .AUTHOR
# .VERSION 3.0  930308:		Using default.mk file

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


OUT =	whet_single.exe whet_double.exe

# RULES:
.for.o:
	$(F77) $(FFLAGS) $<


# DEPENDENCIES:
all: $(OUT)

whet_single.exe: whet_single.o fetime.o cetime.o
	$(LD77) whet_single.o fetime.o cetime.o $(SLIB) -o $@
	$(STRIP) $@

whet_double.exe: whet_double.o fetime.o cetime.o
	$(LD77) whet_double.o fetime.o cetime.o $(SLIB) -o $@
	$(STRIP) $@

clean_exec:
	rm -f $(OUT)

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

run:
	whet_single.exe
	whet_double.exe
