d321263b8cf8e70977a542d8d0fd7825fa503108
[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         threads.c       \
30         threads.h       \
31         threads-types.h \
32         file-io.c       \
33         file-io.h       \
34         socket-io.c     \
35         socket-io.h     \
36         exception.c     \
37         exception.h     \
38         unicode.c       \
39         unicode.h       \
40         mempool.h       \
41         mempool.c       \
42         appdomain.h     \
43         appdomain.c     \
44         rand.h          \
45         rand.c
46
47 libmetadataincludedir = $(includedir)/mono/metadata
48
49 libmetadatainclude_HEADERS = \
50         assembly.h      \
51         opcodes.h       \
52         blob.h          \
53         cil-coff.h      \
54         mono-endian.h   \
55         image.h         \
56         metadata.h      \
57         verify.h        \
58         rawbuffer.h     \
59         reflection.h    \
60         row-indexes.h   \
61         tabledefs.h     \
62         tokentype.h     \
63         loader.h        \
64         class.h         \
65         object.h        \
66         exception.h     \
67         appdomain.h     \
68         rand.h
69
70 pedump_SOURCES =                \
71         pedump.c $(libmetadata_a_SOURCES)
72
73 pedump_LDADD = $(GLIB_LIBS) $(GMODULE_LIBS) ../io-layer/libwapi.a
74
75