diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-09 05:57:05 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-09 05:57:05 +0000 |
| commit | 680c018810e22008f4fdd4581542648c9fb89e9a (patch) | |
| tree | 053ad7392c2ed8577ea07f910d35a750b18959ee /libc/sysdeps | |
| parent | 3dfe29ec75a1adfe9f05e8437ff8b67f309d4acd (diff) | |
| download | uClibc-alpine-680c018810e22008f4fdd4581542648c9fb89e9a.tar.bz2 uClibc-alpine-680c018810e22008f4fdd4581542648c9fb89e9a.tar.xz | |
Finally, all of the makefiles that make the magic happen. These changes allow for uClibc to build for NPTL support without breaking the old linuxthreads model. Let the testing begin.
Diffstat (limited to 'libc/sysdeps')
| -rw-r--r-- | libc/sysdeps/linux/mips/Makefile | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/libc/sysdeps/linux/mips/Makefile b/libc/sysdeps/linux/mips/Makefile index 67524daac..bcfcb0b59 100644 --- a/libc/sysdeps/linux/mips/Makefile +++ b/libc/sysdeps/linux/mips/Makefile @@ -28,15 +28,9 @@ SSRC=bsd-_setjmp.S bsd-setjmp.S setjmp.S clone.S syscall.S pipe.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) CSRC=__longjmp.c brk.c setjmp_aux.c mmap.c __syscall_error.c \ - cacheflush.c pread_write.c sysmips.c _test_and_set.c #sigaction.c + cacheflush.c pread_write.c sysmips.c _test_and_set.c sigaction.c COBJS=$(patsubst %.c,%.o, $(CSRC)) -ifeq ($(PTHREADS_NATIVE),y) -COBJS += $(PTDIR)sysdeps/$(TARGET_ARCH)/libc-tls.o \ - $(PTDIR)sysdeps/unix/sysv/linux/libc-lowlevellock.o \ - $(PTDIR)sysdeps/unix/sysv/linux/libc-lowlevellock.os -endif - OBJS=$(SOBJS) $(COBJS) OBJ_LIST=../../../obj.sysdeps.$(TARGET_ARCH) @@ -87,17 +81,6 @@ $(TOPDIR)lib/crtn.o: $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o endif -ifeq ($(PTHREADS_NATIVE),y) -$(PTDIR)sysdeps/$(TARGET_ARCH)/libc-tls.o: - $(MAKE) -C $(PTDIR)sysdeps/$(TARGET_ARCH) libc-tls.o - -$(PTDIR)sysdeps/unix/sysv/linux/libc-lowlevellock.o: - $(MAKE) -C $(PTDIR)sysdeps/unix/sysv/linux libc-lowlevellock.o - -$(PTDIR)sysdeps/unix/sysv/linux/libc-lowlevellock.os: - $(MAKE) -C $(PTDIR)sysdeps/unix/sysv/linux libc-lowlevellock.os -endif - headers: $(LN) -fs ../libc/sysdeps/linux/mips/sgidefs.h $(TOPDIR)/include/ # $(LN) -fs ../libc/sysdeps/linux/mips/regdef.h $(TOPDIR)/include/ |
