Makefile.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. srcdir = @srcdir@
  2. TEST_CC = @TEST_CC@
  3. TEST_CXX = @TEST_CXX@
  4. test-cc-option-wimplicit-fallthrough = @libc_cv_test_cc_wimplicit_fallthrough@
  5. test-config-cflags-mprefer-vector-width = @libc_cv_test_cc_mprefer_vector_width@
  6. test-config-cflags-signaling-nans = @libc_cv_test_cc_signaling_nans@
  7. test-cc-option-wfree-labels = @libc_cv_test_cc_wfree_labels@
  8. test-cc-option-wmissing-parameter-name = @libc_cv_test_cc_wmissing_parameter_name@
  9. test-enable-cet = @test_enable_cet@
  10. test-have-static-pie = @libc_cv_test_static_pie@
  11. test-supported-fortify = @libc_cv_test_supported_fortify_source@
  12. # Uncomment the line below if you want to do parallel build.
  13. # PARALLELMFLAGS = -j 4
  14. .PHONY: all install bench
  15. all .DEFAULT:
  16. $(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@
  17. check xcheck test:
  18. $(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) \
  19. CC="$(TEST_CC)" CXX="$(TEST_CXX)" \
  20. cc-option-wimplicit-fallthrough="$(test-cc-option-wimplicit-fallthrough)" \
  21. config-cflags-mprefer-vector-width="$(test-config-cflags-mprefer-vector-width)" \
  22. config-cflags-signaling-nans="$(test-config-cflags-signaling-nans)" \
  23. cc-option-wfree-labels="$(test-cc-option-wfree-labels)" \
  24. cc-option-wmissing-parameter-name="$(test-cc-option-wmissing-parameter-name)" \
  25. enable-cet="$(test-enable-cet)" \
  26. have-static-pie="$(test-have-static-pie)" \
  27. supported-fortify="$(test-supported-fortify)" \
  28. objdir=`pwd` $@
  29. install:
  30. LC_ALL=C; export LC_ALL; \
  31. $(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@
  32. bench bench-clean bench-build:
  33. $(MAKE) -C $(srcdir)/benchtests $(PARALLELMFLAGS) objdir=`pwd` $@