CFLAGS=-g -Wall 
ser: main.c 
	gcc -g -c -Wall main.c -o main.o
	gcc main.o -o main
clean: 
	rm *.o main
