# Warning, this is a totally stupid Makefile that will not check for anything 
# nor take care if something goes wrong. I don't take any responsibility if it 
# will delete all your data or burn down your computer.
#
# makefile for stripstar
#
#uncomment line according to your compiler
#COMP = g77
COMP = gfortran -std=legacy

all : stripstar.f
	$(COMP) -o stripstar stripstar.f
	
clean :
	@ - rm -f {stripstar} >/dev/null 2>&1

install : 
	@ echo "copy binaries to /usr/local/bin"
	@ cp {stripstar} /usr/local/bin
