

# Configurable flags for compilation
CFLAGS?=-O0 -g -D_MT -D_REENTRANT
LFLAGS?=-lm -lpthread
ALLFLAGS?=-Wall


all: sertest.exe

sertest.exe: sertest.c
	gcc $(CFLAGS) $(LFLAGS) $(ALLFLAGS) sertest.c -o sertest.exe



