Explorar el Código

Better syscall building mechanism

Eric Andersen hace 25 años
padre
commit
f8c4b3ad2f
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      libc/sysdeps/linux/i386/Makefile

+ 1 - 2
libc/sysdeps/linux/i386/Makefile

@@ -26,8 +26,7 @@ LIBC=$(TOPDIR)libc.a
 ASFLAGS=$(CFLAGS)
 
 ASMSRC=syscalls.S
-#The file makefile.objs defines $(ASMOBJS)
-include makefile.objs
+ASMOBJS=$(shell ./list_syscalls.sh)
 
 SSRC=_start.S setjmp.S longjmp.S #fork.S #clone.S
 SOBJS=$(patsubst %.S,%.o, $(SSRC))