mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 01:00:07 +00:00
29 lines
533 B
Makefile
29 lines
533 B
Makefile
ifeq ($(subdir),misc)
|
|
sysdep_headers += regdef.h fpregdef.h sys/regdef.h sys/fpregdef.h \
|
|
sys/asm.h sgidefs.h
|
|
endif
|
|
|
|
ifeq ($(subdir),setjmp)
|
|
sysdep_routines += setjmp_aux
|
|
endif
|
|
|
|
ifeq ($(subdir),rt)
|
|
librt-sysdep_routines += rt-sysdep
|
|
endif
|
|
|
|
ifeq ($(subdir),debug)
|
|
CFLAGS-backtrace.c += -funwind-tables
|
|
endif
|
|
|
|
ifeq ($(subdir),csu)
|
|
CPPFLAGS-crti.S += $(pic-ccflag)
|
|
CPPFLAGS-crtn.S += $(pic-ccflag)
|
|
endif
|
|
|
|
ifeq ($(subdir),nptl)
|
|
CPPFLAGS-pt-crti.S += $(pic-ccflag)
|
|
CPPFLAGS-crtn.S += $(pic-ccflag)
|
|
endif
|
|
|
|
ASFLAGS-.os += $(pic-ccflag)
|