proyect: testCiclo.o 
	g++ testCiclo.o -o testCiclo

testCiclo.o: testCiclo.c
	g++ -c testCiclo.c 
	
clean:
	rm *.o

clear:
	rm testCiclo
	

	