%% "Angel Tsankov" <[EMAIL PROTECTED]> writes: at> I have a list of citations (e.g. citations = "This is citation 1" at> "This is citation 2" "This is citation 3") and I want to pass this at> variable as the first argument to a batch file. I've already tried at> this:
at> var := $(shell do_smth_with_citations.bat $(citations)) at> var := $(shell do_smth_with_citations.bat "$(citations)") Well, the second method you show here works in UNIX with UNIX shell scripts. I think you need Windows-specific advice here. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
