c9c961ad346f64b141ba563efd3fe5dce9455aa1
[mono.git] / mono / metadata / Makefile.am
1 noinst_PROGRAMS = pedump
2
3 lib_LIBRARIES = libmetadata.a
4
5 #
6 # Keep in sync with mono/runtime/Makefile.am
7 #
8 assembliesdir = $(libdir)
9
10 INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS) -I$(top_srcdir)     \
11         -DMONO_ASSEMBLIES=\""$(assembliesdir)"\"                
12
13 libmetadata_a_SOURCES = \
14         assembly.c      \
15         opcodes.c       \
16         image.c         \
17         metadata.c      \
18         verify.c        \
19         mono-endian.c   \
20         private.h       \
21         rawbuffer.c     \
22         reflection.c    \
23         loader.c        \
24         class.c         \
25         object.c        \
26         icall.c         \
27         decimal.c       \
28         decimal.h       \
29         marshal.c       \
30         marshal.h       \
31         threads.c       \
32         threads.h       \
33         threads-types.h \
34         file-io.c       \
35         file-io.h       \
36         socket-io.c     \
37         socket-io.h     \
38         exception.c     \
39         exception.h     \
40         unicode.c       \
41         unicode.h       \
42         mempool.h       \
43         mempool.c       \
44         appdomain.h     \
45         appdomain.c     \
46         debug-helpers.h \
47         debug-helpers.c \
48         rand.h          \
49         rand.c
50
51 libmetadataincludedir = $(includedir)/mono/metadata
52
53 libmetadatainclude_HEADERS = \
54         assembly.h      \
55         opcodes.h       \
56         blob.h          \
57         cil-coff.h      \
58         mono-endian.h   \
59         image.h         \
60         metadata.h      \
61         verify.h        \
62         rawbuffer.h     \
63         reflection.h    \
64         row-indexes.h   \
65         tabledefs.h     \
66         tokentype.h     \
67         loader.h        \
68         class.h         \
69         object.h        \
70         exception.h     \
71         appdomain.h     \
72         rand.h
73
74 pedump_SOURCES =                \
75         pedump.c $(libmetadata_a_SOURCES)
76
77 pedump_LDADD = $(GLIB_LIBS) $(GMODULE_LIBS) ../io-layer/libwapi.a
78
79