123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- USE_CRT0_C=false
- TOPDIR=../../../../
- include $(TOPDIR)Rules.mak
- ASFLAGS=$(CFLAGS)
- ifeq ($(USE_CRT0_C),true)
- CRT0=crt0.c
- CRT0_OBJ=$(patsubst %.c,%.o, $(CRT0))
- else
- CRT0=crt0.S
- CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0))
- endif
- SSRC=__longjmp.S setjmp.S vfork.S clone.S
- ifeq ($(UNIFIED_SYSCALL),true)
- SSRC += __uClibc_syscall.S
- endif
- SOBJS=$(patsubst %.S,%.o, $(SSRC))
- CSRC=brk.c longjmp.c
- COBJS=$(patsubst %.c,%.o, $(CSRC))
- OBJS=$(SOBJS) $(COBJS)
- all: $(OBJS) $(LIBC)
- $(LIBC): ar-target
- ar-target: $(OBJS) $(CRT0_OBJ)
- $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
- cp $(CRT0_OBJ) $(TOPDIR)libc/$(CRT0_OBJ)
- ifeq ($(USE_CRT0_C),true)
- $(CRT0_OBJ): %.o : %.c
- else
- $(CRT0_OBJ): %.o : %.S
- endif
- $(CC) $(CFLAGS) -c $< -o $@
- $(STRIPTOOL) -x -R .note -R .comment $*.o
- $(SOBJS): %.o : %.S
- $(CC) $(CFLAGS) -c $< -o $@
- $(STRIPTOOL) -x -R .note -R .comment $*.o
- $(COBJS): %.o : %.c
- $(CC) $(CFLAGS) -c $< -o $@
- $(STRIPTOOL) -x -R .note -R .comment $*.o
- headers:
- @(TOPDIR=$(TOPDIR) CC=$(CC) /bin/sh $(TOPDIR)/extra/scripts/gen_bits_syscall_h.sh > bits/syscall.h )
- cd $(TOPDIR)/include/sys && ln -fs ../../libc/sysdeps/linux/i386/vm86.h .
- cd $(TOPDIR)/include/sys && ln -fs ../../libc/sysdeps/linux/i386/reg.h .
- clean:
- rm -f *.[oa] *~ core
- rm -f bits/syscall.h
|