c11threads
diff Makefile @ 0:056c9db89e79
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 24 Sep 2012 12:32:42 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile Mon Sep 24 12:32:42 2012 +0300 1.3 @@ -0,0 +1,14 @@ 1.4 +obj = test.o 1.5 +bin = test 1.6 + 1.7 +CFLAGS = -pedantic -Wall -g 1.8 +LDFLAGS = -lpthread 1.9 + 1.10 +$(bin): $(obj) 1.11 + $(CC) -o $@ $(obj) $(LDFLAGS) 1.12 + 1.13 +test.o: test.c c11threads.h 1.14 + 1.15 +.PHONY: clean 1.16 +clean: 1.17 + rm -f $(obj) $(bin)