#=======================================================================
# Makefile for files in maple subdirectory
# [23-Jul-2000]
#=======================================================================

RM		= /bin/rm -f

SHELL		= /bin/sh

#=======================================================================

all:
	@echo There is nothing to build in this directory

clean mostlyclean:
	-$(RM) *.i
	-$(RM) *.o
	-$(RM) *~
	-$(RM) \#*
	-$(RM) a.out
	-$(RM) core
	-$(RM) tg_*.*

clobber distclean:	clean

install:
	@echo There is nothing to install in this directory

maintainer-clean:	distclean
	@echo "This command is intended for maintainers to use;"
	@echo "it deletes files that may require special tools to rebuild."

uninstall:
