diff --git a/src/lib/libc/Makefile b/src/lib/libc/Makefile index 9478384..2b79204 100644 --- a/src/lib/libc/Makefile +++ b/src/lib/libc/Makefile @@ -18,6 +18,7 @@ (cd yp;make) (cd xdr;make) (cd uuid;make) + (cd uthread;make) (cd sys;make) (cd string;make) (cd stdtime;make) @@ -34,8 +35,10 @@ (cd locale;make) (cd isc;make) (cd inet;make) + (cd i386;make) (cd gmon;make) (cd gen;make) + (cd gdtoa;make) (cd db;make) (cd compat-43;make) $(CC) -nostdlib -shared -Wl,-soname,libc.so -o $(OUTPUT) $(OBJS) $(SUBS) @@ -62,6 +65,7 @@ (cd yp;make clean) (cd xdr;make clean) (cd uuid;make clean) + (cd uthread;make clean) (cd sys;make clean) (cd string;make clean) (cd stdtime;make clean) @@ -78,7 +82,9 @@ (cd locale;make clean) (cd isc;make clean) (cd inet;make clean) + (cd i386;make clean) (cd gmon;make clean) (cd gen;make clean) + (cd gdtoa;make clean) (cd db;make clean) (cd compat-43;make clean) diff --git a/src/lib/libc/uthread/Makefile b/src/lib/libc/uthread/Makefile index f8f23b3..cc6409f 100644 --- a/src/lib/libc/uthread/Makefile +++ b/src/lib/libc/uthread/Makefile @@ -10,10 +10,8 @@ #Objects OBJS = uthread_accept.o uthread_acl_aclcheck_fd.o uthread_acl_delete_fd.o uthread_acl_get_fd.o uthread_acl_set_fd.o uthread_aio_suspend.o uthread_atfork.o uthread_attr_destroy.o uthread_attr_get_np.o uthread_attr_getdetachstate.o uthread_attr_getguardsize.o uthread_attr_getinheritsched.o uthread_attr_getschedparam.o uthread_attr_getschedpolicy.o uthread_attr_getscope.o uthread_attr_getstack.o uthread_attr_getstackaddr.o uthread_attr_getstacksize.o uthread_attr_init.o uthread_attr_setcreatesuspend_np.o uthread_attr_setdetachstate.o uthread_attr_setguardsize.o uthread_attr_setinheritsched.o uthread_attr_setschedparam.o uthread_attr_setschedpolicy.o uthread_attr_setscope.o uthread_attr_setstack.o uthread_attr_setstackaddr.o uthread_attr_setstacksize.o uthread_autoinit.o uthread_bind.o uthread_cancel.o uthread_clean.o uthread_close.o uthread_concurrency.o uthread_cond.o uthread_condattr_destroy.o uthread_condattr_init.o uthread_connect.o uthread_creat.o uthread_create.o uthread_detach.o uthread_dup.o uthread_dup2.o uthread_equal.o uthread_execve.o uthread_exit.o uthread_fchflags.o uthread_fchmod.o uthread_fchown.o uthread_fcntl.o uthread_fd.o uthread_file.o uthread_find_thread.o uthread_flock.o uthread_fork.o uthread_fpathconf.o uthread_fstat.o uthread_fstatfs.o uthread_fsync.o uthread_gc.o uthread_getdirentries.o uthread_getpeername.o uthread_getprio.o uthread_getschedparam.o uthread_getsockname.o uthread_getsockopt.o uthread_info.o uthread_init.o uthread_ioctl.o uthread_jmp.o uthread_join.o uthread_kern.o uthread_kevent.o uthread_kill.o uthread_kqueue.o uthread_listen.o uthread_main_np.o uthread_mattr_init.o uthread_mattr_kind_np.o uthread_msync.o uthread_multi_np.o uthread_mutex.o uthread_mutex_prioceiling.o uthread_mutex_protocol.o uthread_mutexattr_destroy.o uthread_nanosleep.o uthread_once.o uthread_open.o uthread_pause.o uthread_pipe.o uthread_poll.o uthread_priority_queue.o uthread_pselect.o uthread_read.o uthread_readv.o uthread_recvfrom.o uthread_recvmsg.o uthread_resume_np.o uthread_rwlock.o uthread_rwlockattr.o uthread_select.o uthread_self.o uthread_sem.o uthread_sendfile.o uthread_sendmsg.o uthread_sendto.o uthread_seterrno.o uthread_setprio.o uthread_setschedparam.o uthread_setsockopt.o uthread_shutdown.o uthread_sig.o uthread_sigaction.o uthread_sigmask.o uthread_sigpending.o uthread_sigprocmask.o uthread_sigsuspend.o uthread_sigwait.o uthread_single_np.o uthread_sleep.o uthread_socket.o uthread_socketpair.o uthread_spec.o uthread_spinlock.o uthread_stack.o uthread_suspend_np.o uthread_switch_np.o uthread_system.o uthread_tcdrain.o uthread_vfork.o uthread_wait.o uthread_wait4.o uthread_waitpid.o uthread_write.o uthread_writev.o uthread_yield.o -#Output -OUTPUT = libc.so -$(OUTPUT): $(OBJS) +all: $(OBJS) # Compile the source files .cc.o: @@ -33,5 +31,5 @@ # Clean up the junk clean: - $(REMOVE) $(OBJS) $(OUTPUT) + $(REMOVE) $(OBJS)