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