summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-07-22 17:54:36 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-22 22:58:43 +0200
commit07b0785c207cd46751abcb17cf44168621bbc479 (patch)
tree3d51e66c7471955bce15f19e9f4612ce1abb8b8e /Makefile
parent92132dda0f13b2f4e82048797acfb7c34da2f53f (diff)
Makefile: add -lpthread
* Makefile (LIBS): Link with libpthread.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ab2ab8..5c51c1d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
TARGET = procfs
OBJS = procfs.o netfs.o procfs_dir.o \
process.o proclist.o rootdir.o dircat.o main.o
-LIBS = -lnetfs -lps -lfshelp
+LIBS = -lnetfs -lps -lfshelp -lpthread
CC = gcc
CFLAGS = -Wall -g