%% Martin Naskovski <[EMAIL PROTECTED]> writes:
mn> CLASSPATH = c:\apps\JSDK2.0\lib\jsdk.jar;c:\apps\javalibs\MD5.jar
mn> JFLAGS=-classpath $(CLASSPATH) -deprecation -g
mn> COMPILE.java=$(JAVAC) $(JFLAGS)
mn> .java.class:
mn> @echo - $(HOSTNAME) javac $< ---
I am running make 3.79.1 on Windows 2000 which I got from Delorie.com's
site. My intent is to compile a .java into a .class file, however the
javac compiler that I am using requires that multiple JAR files that are
specified on the -classpath command line be separated by semi-colons. I.e.
JSU
"Paul D. Smith" wrote:
>
> Use what you have, and when the new version is available you can switch
> to that. It sounds like what you have done is largely user-compatible
> what I'm doing.
>
Sounds okay. What are you doing btw? ;)
> As for an internal implementation, I think this is essential
%% "Eray Ozkural (exa)" <[EMAIL PROTECTED]> writes:
eo> However, my makefiles have been lying around for more than 2 _months_
eo> since my _rejected_ patch.
There's no reason for you to feel this frustration. That's what open
source is all about; you have the source, you have your patch, it
Hi,
I might be pushing things too much, but it looks like things are goin'
a bit slow without anyone pushing. My makefile collection that wants
to replace automake needs some small extensions, notably the read.c
features that Paul's working on...
However, my makefiles have been lying around for
Consider this makefile:
t: m+=2
t:
@echo "[${m}]"
Then the following sort of works:
$ make t
[ 2]
$
(Interestingly, make 3.78 produces a different result:
$ make378 t
[2]
$
Hmmm.)
BUT the folowing crashes:
$ make m=hello t
make: expand.c:489: allocated_variable