c11threads

view Makefile @ 0:056c9db89e79

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 24 Sep 2012 12:32:42 +0300
parents
children
line source
1 obj = test.o
2 bin = test
4 CFLAGS = -pedantic -Wall -g
5 LDFLAGS = -lpthread
7 $(bin): $(obj)
8 $(CC) -o $@ $(obj) $(LDFLAGS)
10 test.o: test.c c11threads.h
12 .PHONY: clean
13 clean:
14 rm -f $(obj) $(bin)