%% "Neta Bar Tal" <[EMAIL PROTECTED]> writes: nbt> the problem is: I want to pass to the javac the following topic: nbt> "com/services/*.java" and the make opens it and list all the java nbt> files in this package.
I'm not sure I'm understanding your terminology correctly, but if I am then this is not what's happening. Make doesn't expand globbing characters like * in command lines; make just passes the command lines to the shell. If you don't want the shell to expand them, then you need to escape them properly (using quotes or backslashes). See the sh man page for information on shell syntax. -- ------------------------------------------------------------------------------- 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 _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
