I believe you could just specify "make -f Makefile.general distrib"

    Pier


Unni Nair <[EMAIL PROTECTED]> wrote:

> Hello,
>
> I downloaded a zip containing the files for TableLayout. Could anyone help
> me to make it as a package? The first statement is 'package' it hass
> multiple programs and when I tried
> javac -d path filename.java
> something compiled full and rest of them failed with bunch of errors.
> It came with a makefile batch program and it has the following comments, I
> couldn't make anything out of it can anyone help me? (Also, if someone
> already using the tablelayout package, can you send me the jar file for me)
>
> #
> # NAME
> #      $RCSfile: Makefile.general,v $
> # DESCRIPTION
> #      [given below in javadoc format]
> # DELTA
> #      $Revision: 1.2 $
> # CREATED
> #      $Date: 1997/03/24 14:56:27 $
> # COPYRIGHT
> #      Westhawk Ltd
> # TO DO
> #
>
> .SUFFIXES:
> .SUFFIXES: .java .class $(SUFFIXES)
>
> SRC= \
>       TableCol.java \
>       TableLayout.java \
>       TableLoc.java \
>       TableLocRec.java \
>       TableOpts.java \
>       TableRow.java \
>       TableVec.java \
>       TableVecRec.java
>
> OBJ=$(SRC:.java=.class)
>
> # JDK 1.1.1 setup
> JAVA_HOME=c:\jdk1.3
> CLASSPATH=$(JAVA_HOME)/lib/classes.zip:.
>
> JAVA=javac
> JFLAGS=-g
>
> .java:
>       $(JAVA_HOME)/bin/$(JAVA) -classpath $(CLASSPATH):.. $(JFLAGS) $<
>
> .java.class:
>       $(JAVA_HOME)/bin/$(JAVA) -classpath $(CLASSPATH):.. $(JFLAGS) $<
>
>
> all: $(OBJ)
>
> JDOCFLAGS=-classpath $(CLASSPATH):.. -d doc -verbose
> doc: $(OBJ)
>       $(JAVA_HOME)/bin/javadoc $(JDOCFLAGS) tablelayout
>
> ITARGET=/project/classes1.1/tablelayout.zip
> install: $(OBJ)
>       rm -f $(ITARGET)
>       (cd ..; zip -vun class $(ITARGET) tablelayout/*.class)
>
> DTARGET=/project/packages1.1/tablelayout/tablelayout.zip
> distrib: $(OBJ)
>       rm -f $(DTARGET)
>       (cd ..; zip -vru $(DTARGET) tablelayout)
>
> clean:
>       rm -f $(OBJ) *~ *% $(ITARGET) $(DTARGET)
>
>
> Thank you very much for your valuable time.
> -Nair
>
> ___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>


    Pier

--
Pier Fumagalli - Sun Microsystems Inc. - <mailto:[EMAIL PROTECTED]>
----------------------------------------------------------------------------

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to