diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-07-22 17:54:36 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-07-22 22:58:43 +0200 |
commit | 07b0785c207cd46751abcb17cf44168621bbc479 (patch) | |
tree | 3d51e66c7471955bce15f19e9f4612ce1abb8b8e /Makefile | |
parent | 92132dda0f13b2f4e82048797acfb7c34da2f53f (diff) |
Makefile: add -lpthread
* Makefile (LIBS): Link with libpthread.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |