[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnustep-make and test-lib
From: |
Nicola Pero |
Subject: |
Re: gnustep-make and test-lib |
Date: |
Mon, 18 Mar 2002 17:25:31 +0000 (GMT) |
> /path/to/GNUstep/System/Makefiles/rules.make should define MAKE and
> point either to make(1) or gmake(1) - depending on which you need to
> use (eg. gmake(1) on BSD).
There is no need to define it, it is automatically defined by GNU make to
be the same file name with which make was invoked.
> The reason is that, for example clean and distclean on Pantomime bails
> out, as those are defined as
>
> after-clean::
> cd charsets ; make clean
> cd Testing ; make clean
>
> after-distclean::
> cd charsets ; make distclean
> cd Testing ; make distclean
>
> in Pantomime/GNUmakefile.postamble. Should use ${MAKE} instead.
Nearly :-) - should use $(MAKE) instead.