CC = gcc
CFLAGS = -Ic:/pthread/include
LDFLAGS = -Lc:/pthread/lib -lpthreadgc

all: testpth.exe

testpth.exe: testpth.c
	$(CC) $(CFLAGS) -o testpth.exe testpth.c $(LDFLAGS)


clean:
	rm -f testpth.exe
 

