# OS specific compilation options:
ifeq ($(OS),Windows_NT)
	CC = c:/mingw/bin/gcc
	CFLAGS += -mconsole -mwindows
	LIBS += -lws2_32
else
	UNAME_S := $(shell uname -s)
	ifeq ($(UNAME_S),Linux)
		CFLAGS +=
		LIBS +=
	else
		CFLAGS +=
		LIBS +=
	endif
endif