#
# Makefile - SaVi src/include directory. Run top-level Makefile instead.
#
# $Id: Makefile 8 2019-01-24 04:33:00Z lloydwood $

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

        SRCS = Satellite.h globals.h orbit_utils.h stats_utils.h \
		constants.h gv_file.h gv_utils.h sats.h utils.h \
		tcl_utils.h int_types.h savi.h coverage_vis.h \
		fisheye.h time.h

all:

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

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

