minix/lib/libminc/arch/i386/Makefile.libc.inc
Ben Gras d1b3ab953e a few DBG=-g build fixes, both arches
- setlogin() not available
	- softfloat needed in -lminc for arm
	- libminc: we have to set LIBCDIR for the included files,
	  so use that instead of LIBCSRCDIR

Change-Id: I7f92621ebbca9ce08dc377b3fa61dee089071757
2013-06-16 15:27:41 +02:00

16 lines
395 B
PHP

SRCS+= byte_swap_2.S byte_swap_4.S ffs.S _setjmp.S
SRCS+= memchr.S memcmp.S memcpy.S memmove.S memset.S \
strcat.S strchr.S strcmp.S strcpy.S strlen.S \
strncmp.S strrchr.S
.for i in infinityl.c
.PATH.c: ${LIBCDIR}/arch/${MACHINE_ARCH}/gen
SRCS+= ${i}
.endfor
# Import from string
.for i in bcmp.S
.PATH.S: ${LIBCDIR}/arch/${MACHINE_ARCH}/string
SRCS+= ${i}
CPPFLAGS.${i}+= -D_LIBC
.endfor