diff --git a/Makefile b/Makefile
index 63e56d8499d0aa680b14b7b3472807429856824d..eb45ad20cf1718505ffd7d302d7660951bcaf495 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,17 @@
 SRC=$(wildcard *.c)
 OBJ=$(patsubst %.c,%.o,$(SRC))
+LOBJ=$(patsubst %.c,%.lo,$(SRC))
 
 all: libpthread.a
 
 libpthread.a: $(OBJ)
 	$(AR) -rcs $@ $(OBJ)
 
+libpthread.so: $(LOBJ)
+	$(CC) $(CFLAGS) -nostdlib -shared -o $@ $(LOBJ)
+
 %.o: %.c
 	$(CC) $(CFLAGS) -I . -c $< -o $@
+
+%.lo: %.c
+	$(CC) $(CFLAGS) -fPIC -I . -c $< -o $@