#
# Makefile
#

       SHELL = /bin/sh
          RM = /bin/rm -f

  OTHER_SRCS = world90W.sinu.pbm world90W.cyl.pbm

all:

clean:
	$(RM) *~ $(CLEAN_FILES)

tarfilelist::
	@srcs="Makefile $(SRCS) $(OTHER_SRCS)" ; \
	for i in $$srcs ; do \
	  echo "$(CURRENT_DIR)/$$i" >> $(TOP)/fileslist ; \
	done



	