#
# Makefile
#

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

   OTHER_SRCS = savi.oogl savilogo.oogl \
		savi_inverted.oogl savilogo_inverted.oogl \
		stars_h.oogl stars.oogl \
		earth_h.oogl earth.oogl Earth.ppm.Z \
		earth_vect_h.oogl earth.vect

all:

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

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



	