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

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

OUT =	cwhetstone.exe 

# DEPENDENCIES:
all: $(OUT)

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

clean_exec:
	rm -f $(OUT)

clean:
	rm -f *.o

run:
	cwhetstone.exe output
