summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/mips/Makefile.arch
blob: 5878aa708d875c348c57ec3712a3bf72bc3a7d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Makefile for uClibc
#
# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

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

SSRC:=bsd-_setjmp.S bsd-setjmp.S setjmp.S clone.S syscall.S pipe.S


ARCH_DIR:=$(top_srcdir)libc/sysdeps/linux/mips
ARCH_OUT:=$(top_builddir)libc/sysdeps/linux/mips

ARCH_CSRC:=$(patsubst %.c,$(ARCH_DIR)/%.c,$(CSRC))
ARCH_COBJ:=$(patsubst %.c,$(ARCH_OUT)/%.o,$(CSRC))
ARCH_SSRC:=$(patsubst %.S,$(ARCH_DIR)/%.S,$(SSRC))
ARCH_SOBJ:=$(patsubst %.S,$(ARCH_OUT)/%.o,$(SSRC))

ARCH_OBJS:=$(ARCH_COBJ) $(ARCH_SOBJ)

crt-y:=create
libc-a-y+=$(ARCH_OBJS)
libc-so-y+=$(ARCH_OBJS:.o=.os)

#libc-multi-y+=$(ARCH_CSRC)
libc-nomulti-y+=$(ARCH_OBJS)

objclean-y+=arch_objclean

arch_objclean:
	$(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/