#
# Makefile
#

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

        SRCS = Satellite.h globals.h orbit_utils.h stats_utils.h \
		constants.h gv_utils.h sats.h utils.h tkPlot.h \
		tcl_utils.h gv_satellite.h savi.h coverage_vis.h

all:

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

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