2002-07-20 Dick Porter <dick@ximian.com>
[mono.git] / mono / io-layer / Makefile.am
1 noinst_LTLIBRARIES = libwapi.la
2
3 INCLUDES = \
4         $(GLIB_CFLAGS)          \
5         $(GMODULE_CFLAGS)       \
6         -D_WAPI_BUILDING=1      \
7         -DMONO_BINDIR=\""$(bindir)"\"   \
8         -I$(top_srcdir) 
9
10 libwapiincludedir = $(includedir)/mono/io-layer
11
12 OTHER_H = \
13         access.h        \
14         atomic.h        \
15         context.h       \
16         critical-sections.h     \
17         error.h         \
18         events.h        \
19         handles.h       \
20         io.h            \
21         io-layer.h      \
22         macros.h        \
23         mono-mutex.h    \
24         mutexes.h       \
25         processes.h     \
26         semaphores.h    \
27         sockets.h       \
28         status.h        \
29         system.h        \
30         threads.h       \
31         timefuncs.h     \
32         types.h         \
33         uglify.h        \
34         versioninfo.h   \
35         wait.h          \
36         wapi.h  
37
38 OTHER_SRC = \
39         access.h                \
40         atomic.c                \
41         atomic.h                \
42         context.c               \
43         context.h               \
44         critical-sections.c     \
45         critical-sections.h     \
46         daemon.c                \
47         daemon-private.h        \
48         daemon-messages.c       \
49         daemon-messages.h       \
50         error.c                 \
51         error.h                 \
52         events.c                \
53         events.h                \
54         event-private.h         \
55         handles.c               \
56         handles.h               \
57         handles-private.h       \
58         io.c                    \
59         io.h                    \
60         io-private.h            \
61         io-layer.h              \
62         macros.h                \
63         misc.c                  \
64         misc-private.h          \
65         mutexes.c               \
66         mutexes.h               \
67         mutex-private.h         \
68         mono-mutex.c            \
69         mono-mutex.h            \
70         processes.c             \
71         processes.h             \
72         process-private.h       \
73         semaphores.c            \
74         semaphores.h            \
75         semaphore-private.h     \
76         shared.c                \
77         shared.h                \
78         sockets.c               \
79         sockets.h               \
80         socket-private.h        \
81         status.h                \
82         system.c                \
83         system.h                \
84         threads.c               \
85         threads.h               \
86         thread-private.h        \
87         timefuncs.c             \
88         timefuncs.h             \
89         timefuncs-private.h     \
90         timed-thread.c          \
91         timed-thread.h          \
92         types.h                 \
93         uglify.h                \
94         unicode.c               \
95         unicode.h               \
96         versioninfo.h           \
97         wait.c                  \
98         wait.h                  \
99         wapi.h                  \
100         wapi-private.h
101
102 WINDOWS_H = \
103         io-layer.h
104
105 WINDOWS_SRC = \
106         io-layer.h              \
107         io-layer-dummy.c
108
109 if PLATFORM_WIN32
110 libwapi_la_SOURCES = $(WINDOWS_SRC)
111 libwapiinclude_HEADERS = $(WINDOWS_H)
112 else
113 libwapi_la_SOURCES = $(OTHER_SRC)
114 libwapiinclude_HEADERS = $(OTHER_H)
115 endif
116
117 EXTRA_DIST =    \
118         $(WINDOWS_SRC)  \
119         $(OTHER_SRC)
120
121