remove ugly gcc warning removal ack, simply cast the caller parameter
[urcu.git] / Makefile
index 1f53f00d61544756186e54c7666ccad070c2c94c..63cbec9e5c484edfd2800c22242e359cddf2bc81 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
 
 test_urcu: urcu.o test_urcu.c
-       gcc -g -o test_urcu urcu.o test_urcu.c
+       gcc -lpthread -g -o test_urcu urcu.o test_urcu.c
 
 urcu.o: urcu.c urcu.h
-       gcc -g -o urcu.o urcu.c
+       gcc -lpthread -g -c -o urcu.o urcu.c
+
+.PHONY: clean
+
+clean:
+       rm -f urcu.o test_urcu
This page took 0.022626 seconds and 4 git commands to generate.