On Mon, 2005-03-21 at 15:57 +0100, Eric Leenman wrote: > I give the command: gmake-378 kleur.mak > > I get the response: gmake-378: Nothing to be done for 'kleur.mak' .
Almost certainly because you meant to do 'gmake-378 -f kleur.mak' and not 'gmake-378 kleur.mak'. The former means read the Makefile 'kleur.mak' and build the goals; the latter means read Makefile and build kleur.mak. John. -- John Graham-Cumming Home: http://www.jgc.org/ Work: http://www.electric-cloud.com/ POPFile: http://getpopfile.org/ GNU Make Standard Library: http://gmsl.sf.net/ _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
