source: trunk/j/src/org/armedbear/lisp/Makefile.in @ 4031

Last change on this file since 4031 was 4031, checked in by piso, 20 years ago

ash.class

File size: 3.9 KB
Line 
1# Makefile.in
2
3# Copyright (C) 2003 Peter Graves
4# $Id: Makefile.in,v 1.84 2003-09-23 16:31:31 piso Exp $
5
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License
8# as published by the Free Software Foundation; either version 2
9# of the License, or (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20JAVAC = @JAVAC@
21JAVACFLAGS = @JAVACFLAGS@
22COMPILER_CLASSPATH = @COMPILER_CLASSPATH@
23
24CLASSFILES =  AbstractArray.class \
25    AbstractVector.class \
26    ArithmeticError.class \
27    Array.class \
28    ArrayType.class \
29    Autoload.class \
30    AutoloadMacro.class \
31    Bignum.class \
32    BinaryInputStream.class \
33    BinaryOutputStream.class \
34    Binding.class \
35    BitVector.class \
36    Block.class \
37    BuiltInClass.class \
38    CellError.class \
39    CharacterFunctions.class \
40    CharacterInputStream.class \
41    CharacterOutputStream.class \
42    Closure.class \
43    CompiledFunction.class \
44    Complex.class \
45    Condition.class \
46    ConditionThrowable.class \
47    Cons.class \
48    ControlError.class \
49    Debug.class \
50    DisplacedArray.class \
51    DivisionByZero.class \
52    Do.class \
53    EndOfFileException.class \
54    Environment.class \
55    Exports.class \
56    Extensions.class \
57    FillPointerOutputStream.class \
58    Fixnum.class \
59    Function.class \
60    Functional.class \
61    Go.class \
62    HashTable.class \
63    Interpreter.class \
64    Java.class \
65    JavaClassLoader.class \
66    JavaObject.class \
67    Keyword.class \
68    Lisp.class \
69    LispCharacter.class \
70    LispClass.class \
71    LispError.class \
72    LispFloat.class \
73    LispObject.class \
74    LispStream.class \
75    LispString.class \
76    LispThread.class \
77    Load.class \
78    MacroObject.class \
79    Main.class \
80    Module.class \
81    Nil.class \
82    Package.class \
83    PackageError.class \
84    PackageFunctions.class \
85    Packages.class \
86    ParseError.class \
87    Pathname.class \
88    Primitive.class \
89    Primitive0.class \
90    Primitive1.class \
91    Primitive2.class \
92    Primitive3.class \
93    Primitives.class \
94    ProgramError.class \
95    Ratio.class \
96    Readtable.class \
97    Return.class \
98    SimpleCondition.class \
99    SimpleError.class \
100    SimpleTypeError.class \
101    SpecialOperator.class \
102    StandardClass.class \
103    StandardObject.class \
104    StreamError.class \
105    StringFunctions.class \
106    StringInputStream.class \
107    StringOutputStream.class \
108    StructureClass.class \
109    StructureObject.class \
110    Symbol.class \
111    ThreadDestroyed.class \
112    Throw.class \
113    Time.class \
114    TypeError.class \
115    TwoWayStream.class \
116    UnboundSlot.class \
117    UnboundVariable.class \
118    UndefinedFunction.class \
119    Utilities.class \
120    Vector.class \
121    Version.class \
122    WrongNumberOfArgumentsException.class \
123    ash.class \
124    atan.class \
125    cell_error_name.class \
126    coerce.class \
127    cxr.class \
128    define_condition.class \
129    describe.class \
130    dolist.class \
131    dotimes.class \
132    last.class \
133    logand.class \
134    logandc1.class \
135    logandc2.class \
136    logbitp.class \
137    logeqv.class \
138    logior.class \
139    lognand.class \
140    lognor.class \
141    lognot.class \
142    logorc1.class \
143    logorc2.class \
144    logxor.class \
145    make_array.class \
146    make_condition.class \
147    open.class \
148    probe_file.class \
149    room.class
150
151SOURCEFILES = $(patsubst %.class,%.java,$(CLASSFILES))
152
153%.class : %.java
154  $(JAVAC) -classpath "$(COMPILER_CLASSPATH)" $(JAVACFLAGS) $<
155  date > build
156  touch ../../../../classes.stamp
157
158classes: $(CLASSFILES)
159
160lisp: $(CLASSFILES)
161  gcj -O2 $(SOURCEFILES) --main=org.armedbear.lisp.Main -o lisp
162
163clean:
164  -rm -f *.class build
165
166Makefile: Makefile.in ../../../../config.status
167  cd ../../../.. && $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.