diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index aaa19bb..46558fd 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -132,7 +132,7 @@ SMALL_STATIC_OBJS = \ create.o \ dll.o \ errno.o \ - exit.o \ + pthread_exit.o \ fork.o \ global.o \ pthread_mutex_init.o \ @@ -267,6 +267,9 @@ CONDVAR_SRCS = \ pthread_cond_signal.c \ pthread_cond_wait.c +EXIT_SRCS = \ + pthread_exit.c + MISC_SRCS = \ pthread_equal.c \ pthread_getconcurrency.c \ @@ -467,6 +470,7 @@ attr.o: attr.c $(ATTR_SRCS) $(INCL) barrier.o: barrier.c $(BARRIER_SRCS) $(INCL) cancel.o: cancel.c $(CANCEL_SRCS) $(INCL) condvar.o: condvar.c $(CONDVAR_SRCS) $(INCL) +exit.o: exit.c $(EXIT_SRCS) $(INCL) misc.o: misc.c $(MISC_SRCS) $(INCL) mutex.o: mutex.c $(MUTEX_SRCS) $(INCL) nonportable.o: nonportable.c $(NONPORTABLE_SRCS) $(INCL) |