CC=gcc CFLAGS=-g -Wall -lpthread -fopenmp all: server server: server.c $(CC) $(CFLAGS) server.c -o server clean: rm server