This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

F77 makefile again.


Hi,

Why do I have an impression that people who modify g77 makefiles in
egcs either don't care about parallel make or don't want to spend
time to write good makefiles. Here is an example:

In gcc/f/Make-lang.in, there is

f77.install-common:
	case "$(LANGUAGES)" in \
	  *[fF]77*) touch $(libsubdir)/lang-f77;; \
	  *) rm -f $(libsubdir)/lang-f77;; \
	esac

There is no dependency for f77.install-common. With parallel make, it
may fail since $(libsubdir) may not exit when f77.install-common is
reached.


-- 
H.J. Lu (hjl@gnu.org)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]