# 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 randoms
#
#uncomment line according to your compiler
#COMP = g77
COMP = gfortran -std=legacy

all : random.f random3.f
	$(COMP)  -o random random.f
	$(COMP)  -o random3 random3.f

	
clean :
	@ - rm {random,random3} >/dev/null 2>&1

install : 
	@ echo "copy binaries to /usr/local/bin"
	@ cp {random,random3} /usr/local/bin
