all:
    	#
	clear
	#####################################
	# Compiling antivirus program      ##
	#####################################
	gcc kill.c -o temp
	
	##########################################################
	## Making the antivirus binary immune to RST infections ##
	##########################################################
	cp temp kill ; ./temp 4 kill ; rm -f temp
	
	##########################################################
	## All done, run 'perl Recurse.pl' for RST detection,   ##
	## and removal options.                                 ##
	##                         -- anonymous research team   ##
	##########################################################
	
	
	
