If you have the GNU tools installed (e.g., Cygwin or MinGW) you might
be able to use this rather awful kludge:

    simple := $(wildcard *)
    kludge := $(shell find * -mindepth 0 -maxdepth 0 -print | sed 's, ,\\ ,g')

    all:
            @echo -n simple: ; for i in $(simple); do echo $$i; done
            @echo -n kludge: ; for i in $(kludge); do echo $$i; done

-- 
Governing the U.S. is like playing 200 simultaneous chess
matches (while whiny columnists second-guess every move on every
board).
        -- Nicholas Kristof, New York Times columnist



_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to