X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=Makefile.in;h=5419704ac53d50c0527363f4b74783230e412aa5;hb=a20a91ad7c042c46e4a2adee6d03315f857f9985;hp=3593fe130324f211918f4480059c2efb86262ad3;hpb=6c67ceaeed2f28b2caa4a5638304d260c8091c42;p=uclinux-h8%2FuClibc.git diff --git a/Makefile.in b/Makefile.in index 3593fe130..5419704ac 100644 --- a/Makefile.in +++ b/Makefile.in @@ -8,18 +8,8 @@ #-------------------------------------------------------------- # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- -clean_targets := clean realclean distclean \ - objclean-y headers_clean-y CLEAN_utils -noconfig_targets := menuconfig config oldconfig silentoldconfig randconfig \ - defconfig allyesconfig allnoconfig \ - release dist tags help - include $(top_srcdir)Rules.mak sub_headers := headers -ifndef KCONFIG_CONFIG -KCONFIG_CONFIG := $(top_builddir).config -endif -export KCONFIG_CONFIG ifeq ($(HAVE_DOT_CONFIG),y) @@ -56,6 +46,7 @@ include $(top_srcdir)libc/Makefile.in conf := $(top_builddir)extra/config/conf mconf := $(top_builddir)extra/config/mconf +nconf := $(top_builddir)extra/config/nconf ifeq ($(HAVE_DOT_CONFIG),y) # If the .config changes then we have to make sure that our includes are @@ -63,9 +54,9 @@ ifeq ($(HAVE_DOT_CONFIG),y) # have uClibc_config.h as prerequisite but since we _symlink_ the headers # and do not (?) want to rely on 'make -L' we better update them right here, # on spot to save us from alot of hazzle. -$(top_builddir)include/bits/uClibc_config.h: $(conf) $(KCONFIG_CONFIG) $(top_srcdir)extra/scripts/conf-header.sh | $(top_builddir)include/bits $(top_builddir)include/config +$(top_builddir)include/bits/uClibc_config.h: $(conf) $(KCONFIG_CONFIG) $(top_srcdir)extra/scripts/conf-header.sh | $(top_builddir)include/bits @$(disp_gen) - $(Q)@$< -s $(top_srcdir)extra/Configs/Config.in + $(Q)$< -s $(Kconfig) $(Q)$(top_srcdir)extra/scripts/conf-header.sh $(KCONFIG_CONFIG) > $@ $(Q)$(MAKE) headers-y @@ -76,6 +67,10 @@ MAKEFLAGS += -L $(top_builddir)include/config/linuxthreads/old.h $(top_builddir)include/config/linuxthreads/new.h: @true +$(top_builddir)include/generated/unifdef_config.h: $(top_builddir)include/bits/uClibc_config.h | $(top_builddir)include/generated + @$(disp_gen) + $(Q)$(SED) -e '1,3d' $^ > $@ + # For the moment, we have to keep re-running this target # because the fix includes scripts rely on pre-processers # in order to generate the headers correctly :(. That @@ -87,6 +82,12 @@ else export header_extra_args = -n endif HEADERS_BITS_COMMON := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/common/bits/*.h)) +ifneq ($(ARCH_HAS_DEPRECATED_SYSCALLS),y) +HEADERS_BITS_COMMON_NO_LEGACY := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/common-generic/bits/*.h)) +HEADERS_BITS_COMMON := $(filter-out $(HEADERS_BITS_COMMON_NO_LEGACY),$(HEADERS_BITS_COMMON)) +ALL_HEADERS_BITS_COMMON_NO_LEGACY := $(addprefix $(top_builddir)include/bits/,$(HEADERS_BITS_COMMON_NO_LEGACY)) +endif + HEADERS_BITS_ARCH := $(notdir $(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h)) HEADERS_BITS_SUBARCH := ifneq ($(TARGET_SUBARCH),) @@ -127,6 +128,10 @@ target-headers-sysdep := \ $(ALL_HEADERS_SYS_ARCH) \ $(ALL_HEADERS_BITS_PTHREAD) +ifneq ($(ARCH_HAS_DEPRECATED_SYSCALLS),y) + target-headers-sysdep += $(ALL_HEADERS_BITS_COMMON_NO_LEGACY) +endif + $(top_builddir)include/fpu_control.h $(top_builddir)include/jmpbuf-offsets.h $(top_builddir)include/jmpbuf-unwind.h: @$(disp_ln) $(Q)[ -r $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(@F) ] && \ @@ -142,6 +147,11 @@ $(ALL_HEADERS_BITS_COMMON): $(ALL_HEADERS_BITS_ARCH): $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(@F) $@ +ifneq ($(ARCH_HAS_DEPRECATED_SYSCALLS),y) +$(ALL_HEADERS_BITS_COMMON_NO_LEGACY): + $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/common-generic/bits/$(@F) $@ +endif + ifneq ($(TARGET_SUBARCH),) $(ALL_HEADERS_BITS_SUBARCH): $(do_ln) $(call rel_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(TARGET_SUBARCH)/$(@F) $@ @@ -162,6 +172,9 @@ $(target-headers-sysdep) $(pregen-headers-y): | $(top_builddir)include/bits $(to HEADERCLEAN_common: $(do_rm) $(ALL_HEADERS_COMMON) headers_clean-y += HEADERCLEAN_common +HEADERCLEAN_config: + $(do_rm) -r $(addprefix $(top_builddir)include/,config generated) +menuconfig-clean-y: HEADERCLEAN_config # The headers. Arch specific headers are specified via ARCH_HEADERS in # libc/sysdeps/linux/$(TARGET_ARCH)/Makefile.arch which appends those via @@ -177,27 +190,22 @@ pregen: headers pregen-headers $(top_builddir)include/bits/sysnum.h: $(top_srcdir)extra/scripts/gen_bits_syscall_h.sh | $(top_builddir)include/bits @$(disp_gen) $(Q)set -e; \ - tmp=`mktemp $(top_builddir)include/bits/sysnum.h.XXXXXX 2>/dev/null || true`; \ - [ -z "$$tmp" ] && tmp='$(top_builddir)include/bits/sysnum.h.new'; \ - KERNEL_HEADERS="${KERNEL_HEADERS}" top_builddir="$(top_builddir)" CC="$(CC) $(CPU_CFLAGS)" $(SHELL) $< > $$tmp; \ - if cmp $(top_builddir)include/bits/sysnum.h $$tmp >/dev/null 2>&1; then \ - $(RM) $$tmp; \ - else \ - mv -f $$tmp $(top_builddir)include/bits/sysnum.h; \ - fi + KERNEL_HEADERS="${KERNEL_HEADERS}" CC="$(CC) $(CPU_CFLAGS)" $(SHELL) $< > $@.new; \ + cmp -s $@ $@.new && $(RM) $@.new || mv -f $@.new $@ @# Ugly linux specific hack.. $(Q)if grep -q __NR_ $@; then true; else \ rm -f $@; \ echo "ERROR: Could not generate syscalls."; \ - echo "Make sure that you have proper kernel headers."; \ - echo "Your .config in KERNEL_HEADERS=\"\" was set to:"; \ + echo "Make sure that you have properly installed kernel headers."; \ + echo "Your .config KERNEL_HEADERS=\"\" was set to:"; \ echo "${KERNEL_HEADERS}"; \ exit 1; \ fi .PHONY: $(LOCAL_INSTALL_PATH) $(LOCAL_INSTALL_PATH): - $(Q)$(MAKE) PREFIX=$(shell pwd)/$(LOCAL_INSTALL_PATH) RUNTIME_PREFIX=/ \ + $(Q)$(MAKE) PREFIX=$(LOCAL_INSTALL_PATH) \ + RUNTIME_PREFIX=/ \ DEVEL_PREFIX=/usr/ \ HOSTCC="$(HOSTCC)" \ install @@ -217,6 +225,8 @@ $(top_builddir)extra/scripts/unifdef: $(top_srcdir)extra/scripts/unifdef.c # a "y" here means the feature is enabled and so we should *not* rm it. # if the option expands to nothing though, we can punt the headers. HEADERS_RM- := \ + config \ + generated \ internal \ cancel.h \ dl-osinfo.h \ @@ -275,12 +285,13 @@ HEADERS_RM-$(UCLIBC_HAS_REALTIME) += mqueue.h bits/mqueue.h sched.h \ HEADERS_RM-$(UCLIBC_HAS_REGEX) += regex.h regexp.h HEADERS_RM-$(UCLIBC_HAS_RPC) += rpc HEADERS_RM-$(UCLIBC_HAS_SHADOW) += shadow.h -HEADERS_RM-$(UCLIBC_HAS_SOCKET) += sys/socket.h bits/socket.h sys/socketvar.h +HEADERS_RM-$(UCLIBC_HAS_SOCKET) += sys/socket.h bits/socket.h sys/socketvar.h bits/socket_type.h HEADERS_RM-$(UCLIBC_HAS_SYSLOG) += syslog.h sys/syslog.h bits/syslog*.h HEADERS_RM-$(UCLIBC_HAS_THREADS) += *thread*.h semaphore.h \ bits/*thread*.h \ bits/initspin.h HEADERS_RM-$(UCLIBC_HAS_THREADS_NATIVE) += atomic.h bits/atomic.h +HEADERS_RM-$(UCLIBC_HAS_OBSTACK) += obstack.h HEADERS_RM-$(UCLIBC_HAS_UTMPX) += bits/utmpx.h utmpx.h HEADERS_RM-$(UCLIBC_HAS_WCHAR) += wchar.h wctype.h HEADERS_RM-$(UCLIBC_HAS_WORDEXP) += wordexp.h @@ -288,6 +299,7 @@ HEADERS_RM-$(UCLIBC_HAS_XATTR) += sys/xattr.h HEADERS_RM-$(UCLIBC_HAS_XLOCALE) += xlocale.h HEADERS_RM-$(UCLIBC_LINUX_SPECIFIC) += \ sys/cachectl.h \ + bits/eventfd.h \ sys/eventfd.h \ sys/fsuid.h \ bits/inotify.h \ @@ -324,7 +336,9 @@ $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR): $(do_mkdir) endif endif -install_headers: headers $(top_builddir)extra/scripts/unifdef | $(PREFIX)$(DEVEL_PREFIX)include + + +install_headers: headers $(top_builddir)extra/scripts/unifdef $(top_builddir)include/generated/unifdef_config.h | $(PREFIX)$(DEVEL_PREFIX)include @$(call disp_install,"include -> $(PREFIX)$(DEVEL_PREFIX)include") $(Q)top_builddir=$(top_builddir) \ $(top_srcdir)extra/scripts/install_headers.sh \ @@ -438,48 +452,56 @@ hostutils: | pregen install_hostutils: hostutils $(Q)$(MAKE) CROSS_COMPILE="$(CROSS_COMPILE)" CC="$(CC)" HOSTCC="$(HOSTCC)" DOTHOST=.host -C utils utils_install -$(addprefix $(top_builddir),include include/bits include/sys include/config lib extra/config/lxdialog extra/locale extra/scripts $(subdirs)): +$(addprefix $(top_builddir),include include/bits include/sys include/config include/generated lib extra/config/lxdialog extra/locale extra/scripts $(subdirs)): $(do_mkdir) # configuration # --------------------------------------------------------------------------- -$(conf) $(mconf): | $(top_builddir)include/config $(top_builddir)extra/config/lxdialog +$(conf) $(mconf) $(nconf): | $(top_builddir)include/config $(top_builddir)include/generated $(top_builddir)extra/config/lxdialog $(Q)$(MAKE) -C extra/config $(@F) arch-defconfigs := $(notdir $(wildcard $(top_srcdir)extra/Configs/defconfigs/$(ARCH)/*_defconfig)) menuconfig: $(mconf) - $(Q)$< extra/Configs/Config.in - + $(Q)$< $(Kconfig) config: $(conf) - $(Q)$< extra/Configs/Config.in - -oldconfig: $(conf) - $(Q)$< -o extra/Configs/Config.in + $(Q)$< $(Kconfig) +nconfig: $(nconf) + $(Q)$< $(Kconfig) +oldaskconfig: $(conf) + $(Q)$< -a $(Kconfig) silentoldconfig: $(conf) - $(Q)$< -s extra/Configs/Config.in - -randconfig: $(conf) - $(Q)$< -r extra/Configs/Config.in - + $(Q)$< -s $(Kconfig) +oldconfig: $(conf) + $(Q)$< -o $(Kconfig) +allnoconfig: $(conf) + $(Q)$< -n $(Kconfig) allyesconfig: $(conf) - $(Q)$< -y extra/Configs/Config.in + $(Q)$< -y $(Kconfig) $(SED) -i -e "s/^DODEBUG=.*/# DODEBUG is not set/" \ -e "s/^DOASSERTS=.*/# DOASSERTS is not set/" \ -e "s/^SUPPORT_LD_DEBUG_EARLY=.*/# SUPPORT_LD_DEBUG_EARLY is not set/" \ -e "s/^SUPPORT_LD_DEBUG=.*/# SUPPORT_LD_DEBUG is not set/" \ -e "s/^UCLIBC_MJN3_ONLY=.*/# UCLIBC_MJN3_ONLY is not set/" \ $(KCONFIG_CONFIG) - $(Q)$< -o extra/Configs/Config.in - -allnoconfig: $(conf) - $(Q)$< -n extra/Configs/Config.in + $(Q)$< -o $(Kconfig) +alldefconfig: $(conf) + $(Q)$< -A $(Kconfig) +randconfig: $(conf) + $(Q)$< -r $(Kconfig) -cmd_defconfig = $(Q)$< -D extra/Configs/defconfigs/$(ARCH)/$@ extra/Configs/Config.in +cmd_defconfig = $(Q)$< -D extra/Configs/defconfigs/$(ARCH)/$@ $(Kconfig) defconfig: $(conf) ; $(cmd_defconfig) %_defconfig: $(conf) ; $(cmd_defconfig) +savedefconfig: $(conf) + $(Q)$< -S defconfig $(Kconfig) +listnewconfig: $(conf) + $(Q)$< -l $(Kconfig) +olddefconfig: $(conf) + $(Q)$< -d $(Kconfig) + menuconfig-clean-y: $(Q)$(MAKE) -C extra/config CLEAN_extra/config @@ -498,11 +520,11 @@ clean: include_clean $(Q)$(RM) $(top_builddir)extra/scripts/unifdef $(Q)$(RM) -r $(LOCAL_INSTALL_PATH) -distclean: clean +distclean: realclean -find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\*.dep \) -exec $(RM) {} \; $(RM) $(top_builddir).config $(top_builddir).config.old $(top_builddir).config.cmd - $(RM) $(top_builddir)extra/locale/*.tgz - $(MAKE) -C extra/config distclean + $(Q)$(RM) $(top_builddir)extra/locale/*.tgz + @$(MAKE) -C extra/config distclean dist release: $(RM) ../uClibc-$(VERSION).tar @@ -513,7 +535,9 @@ dist release: du -b ../uClibc-$(VERSION).tar.{bz2,xz} test check: test_compile - $(Q)$(MAKE) -C test + $(Q)$(MAKE) -C test \ + $(if $(O),top_builddir=$(O)/) test_compile: $(LOCAL_INSTALL_PATH) - $(Q)$(MAKE) -C test compile + $(Q)$(MAKE) -C test compile \ + $(if $(O),top_builddir=$(O)/)