bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

I have a problem with the make utilities


From: Mixte Philippe
Subject: I have a problem with the make utilities
Date: Tue, 2 Jan 2001 15:37:22 +0100

Hello,

Can you help me, I have a small problem with make.

 

I use this version of make on my pc

$p$gmake --version

GNU Make version 3.78.1, by Richard Stallman and Roland McGrath.

Built for Windows32

Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99

 

The version of windows98 is second edition 4.10.2222A

I use also GNU utilities for Win32 with the zsh SHELL

Report bugs to <address@hidden>.

Here is the makefile

ROOT = .

include $(ROOT)/make/shared.mk

DIRS = lib float progs

all:

SUBTARGETS = all clean

$(SUBTARGETS):

$(foreach DIR,$(DIRS),(cd $(DIR); $(MAKE) $@) &&) true

and here the result of the make

$p$gmake

(cd lib; C:/UNXUTILS/USR/LOCAL/WBIN/make all) && (cd float; C:/UNXUTILS/USR/LOCA

L/WBIN/make all) && (cd driver; C:/UNXUTILS/USR/LOCAL/WBIN/make all) && (cd prog

s; C:/UNXUTILS/USR/LOCAL/WBIN/make all) && (cd test; C:/UNXUTILS/USR/LOCAL/WBIN/

make all) && true

process_begin: CreateProcess((null), (cd lib; C:/UNXUTILS/USR/LOCAL/WBIN/make al

l) && (cd float; C:/UNXUTILS/USR/LOCAL/WBIN/make all) && (cd driver; C:/UNXUTILS

/USR/LOCAL/WBIN/make all) && (cd progs; C:/UNXUTILS/USR/LOCAL/WBIN/make all) &&

(cd test; C:/UNXUTILS/USR/LOCAL/WBIN/make all) && true, ...) failed.

make (e=2): Le fichier spÚcifiÚ est introuvable.

C:\UNXUTILS\USR\LOCAL\WBIN\make: *** [all] Error 2

If I change may make like this

SUBTARGETS = all clean

$(SUBTARGETS):

    cd lib; ls

the result is too many parameters

$p$gmake

cd lib; ls

Trop de paramètres - ls


reply via email to

[Prev in Thread] Current Thread [Next in Thread]