Re: semi-colon in makefiles?

2001-02-06 Thread Paul D. Smith
%% 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 $< ---

semi-colon in makefiles?

2001-02-06 Thread Martin Naskovski
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

Re: Volunteer available

2001-02-06 Thread Eray Ozkural (exa)
"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

Re: Volunteer available

2001-02-06 Thread Paul D. Smith
%% "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

Volunteer available

2001-02-06 Thread Eray Ozkural (exa)
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

make 3.79: core dump expanding target specific variables

2001-02-06 Thread Robert Bogomip
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