Re: Template makefile for Java?

2000-12-07 Thread Florent Coste
You could use ant, it some a new standard makefile for java development : http://jakarta.apache.org. ( it has built in 'rules' for many common tasks ). Florent. Vladimir G Ivanovic wrote: > > If you have makefile that could be used as a template, please post it > (or pos

Template makefile for Java?

2000-12-06 Thread Vladimir G Ivanovic
If you have makefile that could be used as a template, please post it (or post a link to it.) It would be really nice if it handled RMI stubs and skeletons as well as Java sources. Thanks. ---Vladimir Vladimir G. Ivanovichttp://www.leonora.org/~vladimir 2770 Cowper St

Re: makefile

1999-06-29 Thread Jan-Henrik Haukeland
Bernardo Paz Betancourt <[EMAIL PROTECTED]> writes: > I´m migrating from C++ and dont know how to do a makeFile for my new Java > project which haves more than 3 files to compile, could somme body sendme > as an attached file (I have not Internet access ) a makefile to use as &g

makefile

1999-06-28 Thread Bernardo Paz Betancourt
Hello I´m migrating from C++ and dont know how to do a makeFile for my new Java project which haves more than 3 files to compile, could somme body sendme as an attached file (I have not Internet access ) a makefile to use as example? And tellme how to use it? Thankyou very much. Bernardo

Re: How to Write MakeFile ?

1998-11-26 Thread John Summerfield
On Wed, 25 Nov 1998 [EMAIL PROTECTED] wrote: > Heres a simple Makefile I use. > > BIN = /home/jarvi/java/gps/bin/ > JAVAC = javac > JFLAGS= -d /home/jarvi/java/gps/bin -O > JFILES := $(patsubst %.java,$(BIN)%.class,$(wildcard *.java)) > SUBDIRS = almanac

Re: Unidentified subject! [Makefile problem]

1998-11-25 Thread Karthik Vishwanath
On Wed, 25 Nov 1998, Ramesh Babu A. wrote: > > JAVAC = /usr/local/jdk116/bin/ > Hi Ramesha, Well, i am suprised that the make file u showed even runs! if JAVAC is defined as a *path* only, how does 'make' understand what

Re: How to Write MakeFile ?

1998-11-25 Thread Catalin CLIMOV
e packages. Just put this script in one of your "bin" directories and run it instead of "mmake" to create your Makefile. Catalin. Ramesh Babu A. wrote: > Hi, > > How to write MakeFile for Java in Linux ? > > Here I have snippet of makefile co

Re: How to Write MakeFile ?

1998-11-25 Thread Vincent Trussart
Since this question shows up from time to times... I will answer it from time to times... :) I just updated my JAppTemplate ( a makefile and a directory structure that show how to use it) to version 0.2 Back in september, when I first announced this on this mailing list, I got nice feedback

Re: How to Write MakeFile ?

1998-11-25 Thread java
Heres a simple Makefile I use. BIN = /home/jarvi/java/gps/bin/ JAVAC = javac JFLAGS= -d /home/jarvi/java/gps/bin -O JFILES := $(patsubst %.java,$(BIN)%.class,$(wildcard *.java)) SUBDIRS = almanac misc route trackpoint waypoint rxtx .SUFFIXES:.class .java $(BIN)%.class

Re: How to Write MakeFile ?

1998-11-25 Thread shieldsd
Jikes supports the +M option for use in generating Makefiles. [EMAIL PROTECTED] http://www.ibm.com/research/jikes

Re: How to Write MakeFile ?

1998-11-25 Thread jh
[EMAIL PROTECTED] writes: > How to write MakeFile for Java in Linux ? Have a look at http://www.tildeslash.com/mmake -- Jan-Henrik Haukeland

How to Write MakeFile ?

1998-11-25 Thread Ramesh Babu A.
Hi, How to write MakeFile for Java in Linux ? Here I have snippet of makefile code. But it does not working properply (When I each time give cmd like make -f MakeFile, it compiles each java files even it's time is not modified.)

Re: Java Makefile [ was Delete all class files ]

1998-09-24 Thread Travis Shirk
t; > -A. > > Worst still with packaged java source files. However the following > extracts works fo Xsql and me. > > # Makefile > > PROGRAMS = test > > JCLSS1 = \ >xenon/util/ApplicationResources.class \ >test.class > > JSRCS1 = \ >xenon/util/Applicatio

Java Makefile [ was Delete all class files ]

1998-09-22 Thread peter . pilgrim
e -d option and use a > separate .class directory tree, make doesn't recognize the up-to-date > files there and recompiles everything anyway. I can never get the > "Nothing to be done for `CLASSES'" message when my Makefile looks like > > > CP = $(ROOT):$$CLAS