diff options
Diffstat (limited to 'libc/sysdeps/linux/mips')
-rw-r--r-- | libc/sysdeps/linux/mips/Makefile.arch (renamed from libc/sysdeps/linux/mips/Makefile.in) | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/mips/Makefile.in b/libc/sysdeps/linux/mips/Makefile.arch index e6075d7f6..5878aa708 100644 --- a/libc/sysdeps/linux/mips/Makefile.in +++ b/libc/sysdeps/linux/mips/Makefile.arch @@ -23,7 +23,6 @@ ARCH_OBJS:=$(ARCH_COBJ) $(ARCH_SOBJ) crt-y:=create libc-a-y+=$(ARCH_OBJS) -libc-a-pic-y+=$(ARCH_OBJS:.o=.os) libc-so-y+=$(ARCH_OBJS:.o=.os) #libc-multi-y+=$(ARCH_CSRC) @@ -32,11 +31,16 @@ libc-nomulti-y+=$(ARCH_OBJS) objclean-y+=arch_objclean arch_objclean: - $(RM) $(ARCH_OUT)/*.{o,os} $(top_builddir)include/sgidefs.h + $(RM) $(ARCH_OUT)/*.{o,os} + +headers_clean-y+=arch_headers_clean + +arch_headers_clean: + $(RM) $(top_builddir)include/sgidefs.h + #$(RM) $(top_builddir)include/regdef.h headers-y+=arch_headers arch_headers: $(LN) -fs ../libc/sysdeps/linux/mips/sgidefs.h $(top_builddir)include/ # $(LN) -fs ../libc/sysdeps/linux/mips/regdef.h $(top_builddir)include/ - $(LN) -fs ../libc/sysdeps/linux/mips/fpu_control.h $(top_builddir)include/ |