diff --git a/litecross/Makefile b/litecross/Makefile index 881233d..b96bb1e 100644 --- a/litecross/Makefile +++ b/litecross/Makefile @@ -214,7 +214,19 @@ obj_gcc/.lc_configured: | obj_gcc src_gcc cd obj_gcc && ../src_gcc/configure $(FULL_GCC_CONFIG) touch $@ -obj_gcc/gcc/.lc_built: | obj_gcc/.lc_configured +obj_gcc/.lc_gmp_built: | obj_gcc/.lc_configured + cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_STATIC_ARG)" all-gmp + touch $@ + +obj_gcc/.lc_mpfr_built: | obj_gcc/.lc_gmp_built + cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_STATIC_ARG)" all-mpfr + touch $@ + +obj_gcc/.lc_mpc_built: | obj_gcc/.lc_mpfr_built + cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_STATIC_ARG)" all-mpc + touch $@ + +obj_gcc/gcc/.lc_built: | obj_gcc/.lc_mpc_built cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_ARG)" all-gcc touch $@