search internal headers first

this is necessitated by the ugly <syscall.h> just added
This commit is contained in:
Rich Felker 2012-03-01 00:21:20 -05:00
parent d36751943a
commit 15d143b547
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ GENH = include/bits/alltypes.h
CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe
LDFLAGS = -nostdlib -shared -fPIC -Wl,-e,_start -Wl,-Bsymbolic-functions LDFLAGS = -nostdlib -shared -fPIC -Wl,-e,_start -Wl,-Bsymbolic-functions
INC = -I./include -I./src/internal -I./arch/$(ARCH) INC = -I./src/internal -I./include -I./arch/$(ARCH)
PIC = -fPIC -O3 PIC = -fPIC -O3
AR = $(CROSS_COMPILE)ar AR = $(CROSS_COMPILE)ar
RANLIB = $(CROSS_COMPILE)ranlib RANLIB = $(CROSS_COMPILE)ranlib