Skip to content

Commit

Permalink
remove explicit target definitions for gmp, mpfr, and mpc.
Browse files Browse the repository at this point in the history
Originally added in commit 40d6414,
the purpose of the above target definitions was to allow using the
static-only symlink variant of slibtool (i.e. slibtool-static) in
those build steps which required it. Given slibtool's newly added
ability to auto-detect its desired operation mode (shared-only,
static-only, or both), as well as the integration of rlibtool
support in mcm, the aforementioned explicit target definitions
are no longer needed.
  • Loading branch information
midipix authored and richfelker committed Nov 4, 2018
1 parent 0b2487e commit 040804d
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions litecross/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,19 +207,7 @@ obj_gcc/.lc_configured: | obj_gcc src_gcc
cd obj_gcc && ../src_gcc/configure $(FULL_GCC_CONFIG)
touch $@

obj_gcc/.lc_gmp_built: | obj_gcc/.lc_configured
cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_ARG)" all-gmp
touch $@

obj_gcc/.lc_mpfr_built: | obj_gcc/.lc_gmp_built
cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_ARG)" all-mpfr
touch $@

obj_gcc/.lc_mpc_built: | obj_gcc/.lc_mpfr_built
cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_ARG)" all-mpc
touch $@

obj_gcc/gcc/.lc_built: | obj_gcc/.lc_mpc_built
obj_gcc/gcc/.lc_built: | obj_gcc/.lc_configured
cd obj_gcc && $(MAKE) MAKE="$(MAKE) $(LIBTOOL_ARG)" all-gcc
touch $@

Expand Down

0 comments on commit 040804d

Please sign in to comment.