Cosmetic changes.
[cacao.git] / src / native / tools / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1649 2004-12-02 09:33:38Z twisti $
4
5 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
6
7 if USE_THREADS
8 if NATIVE_THREADS
9 THREAD_LIBRARY = $(top_srcdir)/src/threads/native/libthreads.a
10 else
11 THREAD_LIBRARY = $(top_srcdir)/src/threads/green/libthreads.a
12 endif
13 else
14 THREAD_LIBRARY =
15 endif
16
17 noinst_PROGRAMS = gennativetable
18
19 gennativetable_SOURCES = gennativetable.c
20
21 gennativetable_LDADD = \
22         $(top_srcdir)/src/cacaoh/headers.o \
23         $(THREAD_LIBRARY) \
24         $(top_srcdir)/src/vm/libvm.a \
25         $(top_srcdir)/src/mm/libmm.a \
26         $(top_srcdir)/src/toolbox/libtoolbox.a \
27         $(top_srcdir)/src/boehm-gc/.libs/libgc.a \
28         $(top_srcdir)/src/classpath/native/jni/java-lang/.libs/libjavalang.a
29
30 gennativetable_DEPENDENCIES = \
31         $(top_srcdir)/src/cacaoh/headers.o \
32         $(THREAD_LIBRARY) \
33         $(top_srcdir)/src/vm/libvm.a \
34         $(top_srcdir)/src/mm/libmm.a \
35         $(top_srcdir)/src/toolbox/libtoolbox.a \
36         $(top_srcdir)/src/boehm-gc/.libs/libgc.a \
37         $(top_srcdir)/src/classpath/native/jni/java-lang/.libs/libjavalang.a
38
39
40 ## Local variables:
41 ## mode: Makefile
42 ## indent-tabs-mode: t
43 ## c-basic-offset: 4
44 ## tab-width: 8
45 ## compile-command: "automake --add-missing"
46 ## End: