[wasm] Remove assemblies we don't want to distribute
[mono-project.git] / support / Makefile.am
blob6468654e378ff5916d65387a0a383741fe4f644f
1 if HOST_WIN32
2 SUPPORT=
3 else
4 SUPPORT=libMonoSupportW.la
5 endif
7 if BUILD_SUPPORT
8 lib_LTLIBRARIES =                               \
9         libMonoPosixHelper.la                   \
10         $(SUPPORT)
11 endif
13 AM_CPPFLAGS =                                   \
14         @ZLIB_CFLAGS@                           \
15         $(GLIB_CFLAGS)                          \
16         -I$(top_srcdir)
18 glib_libs = $(top_builddir)/mono/eglib/libeglib.la
20 # Source code which helps implement the ANSI C standards, and thus *should* be
21 # portable to any platform having a C compiler.
22 MPH_C_SOURCE =                                  \
23         errno.c                                 \
24         map.c                                   \
25         map.h                                   \
26         mph.h                                   \
27         signal.c                                \
28         stdio.c                                 \
29         string.c                                        \
30         stdlib.c
32 # Source code which helps implement POSIX and other related Unix standards,
33 # and *may* be portable between Unix platforms.
34 MPH_UNIX_SOURCE =                               \
35         dirent.c                                \
36         fcntl.c                                 \
37         fstab.c                                 \
38         grp.c                                   \
39         macros.c                                \
40         nl.c                                    \
41         nl.h                                    \
42         old-map.c                               \
43         old-map.h                               \
44         pwd.c                                   \
45         serial.c                                \
46         sys-mman.c                              \
47         sys-sendfile.c                          \
48         sys-socket.c                            \
49         sys-stat.c                              \
50         sys-statvfs.c                           \
51         sys-time.c                              \
52         sys-uio.c                               \
53         sys-uio.h                               \
54         sys-utsname.c   \
55         sys-wait.c                              \
56         sys-xattr.c                             \
57         syslog.c                                \
58         time.c                                  \
59         unistd.c                                \
60         utime.c                                 \
61         x-struct-str.c
63 if HOST_WIN32
64 MPH_SOURCE = $(MPH_C_SOURCE)
65 MPH_LIBS   = $(glib_libs)
66 else
67 MPH_SOURCE = $(MPH_C_SOURCE) $(MPH_UNIX_SOURCE)
68 MPH_LIBS   = $(glib_libs)
69 endif
71 MINIZIP_SOURCE = \
72         minizip/crypt.h \
73         minizip/ioapi.c \
74         minizip/ioapi.h \
75         minizip/unzip.c \
76         minizip/unzip.h \
77         minizip/zip.c   \
78         minizip/zip.h
80 ZLIB_SOURCES = \
81         adler32.c       \
82         compress.c      \
83         crc32.c         \
84         uncompr.c       \
85         deflate.c       \
86         trees.c         \
87         zutil.c         \
88         inflate.c       \
89         infback.c       \
90         inftrees.c      \
91         inffast.c       \
92         crc32.h         \
93         deflate.h       \
94         inffast.h       \
95         inffixed.h      \
96         inflate.h       \
97         inftrees.h      \
98         trees.h         \
99         zconf.h         \
100         zlib.h          \
101         zutil.h
103 if HAVE_STATIC_ZLIB
104 Z_SOURCE = zlib-helper.c
105 Z_LIBS = $(STATIC_ZLIB_PATH)
106 else
107 if HAVE_ZLIB
108 Z_SOURCE = zlib-helper.c
109 Z_LIBS= -lz
110 else
111 Z_SOURCE = zlib-helper.c $(ZLIB_SOURCES)
112 Z_LIBS=
113 endif
114 endif
116 libMonoPosixHelper_la_SOURCES =                 \
117         $(MPH_SOURCE)                           \
118         $(Z_SOURCE)                             \
119         $(MINIZIP_SOURCE)
121 libMonoPosixHelper_la_LIBADD =                  \
122         $(MPH_LIBS)                             \
123         $(Z_LIBS)                               \
124         $(XATTR_LIB)
126 # libMonoPosixHelper_la_LDFLAGS = -no-undefined -version-info 1:0:1
127 libMonoPosixHelper_la_LDFLAGS = -no-undefined -avoid-version
128 libMonoSupportW_la_LDFLAGS = -no-undefined -avoid-version
130 libMonoSupportW_la_SOURCES =                    \
131                 supportw.c                      \
132                 support-heap.c                  \
133                 supportw.h
135 libMonoSupportW_la_LIBADD =                     \
136                 $(glib_libs)
138 test-bundle-local:
139         mkdir -p $(TEST_BUNDLE_PATH)
140         cp -L .libs/libMonoPosixHelper$(libsuffix) $(TEST_BUNDLE_PATH)/
143 # Use this target to refresh the values in map.[ch]
145 refresh:
146         cp `pkg-config --variable=Programs create-native-map` . && \
147         $(top_builddir)/runtime/mono-wrapper create-native-map.exe \
148         --autoconf-member=d_off                               \
149         --autoconf-member=d_reclen                            \
150         --autoconf-member=d_type                              \
151         --exclude-native-symbol=Mono_Posix_Stdlib_snprintf    \
152         --impl-macro=_GNU_SOURCE --impl-macro=_XOPEN_SOURCE   \
153         --impl-header="<sys/types.h>"                         \
154         --impl-header="<sys/stat.h>"                          \
155         --autoconf-header="<netinet/in.h>"                    \
156         --autoconf-header="<sys/time.h>"                      \
157         --autoconf-header="<sys/poll.h>"                      \
158         --autoconf-header="<sys/wait.h>"                      \
159         --autoconf-header="<sys/statvfs.h>"                   \
160         --autoconf-header="<sys/xattr.h>"                     \
161         --autoconf-header="<sys/mman.h>"                      \
162         --autoconf-header="<sys/socket.h>"                    \
163         --autoconf-header="<sys/uio.h>"                       \
164         --autoconf-header="<unistd.h>"                        \
165         --impl-header="<fcntl.h>"                             \
166         --impl-header="<signal.h>"                            \
167         --autoconf-header="<poll.h>"                          \
168         --autoconf-header="<grp.h>"                           \
169         --impl-header="<errno.h>"                             \
170         --autoconf-header="<syslog.h>"                        \
171         --autoconf-header="<dirent.h>"                        \
172         --autoconf-header="<utime.h>"                         \
173         --impl-header="<time.h>"                              \
174         --impl-header="\"mph.h\""                             \
175         --rename-member=st_atime=st_atime_                    \
176         --rename-member=st_ctime=st_ctime_                    \
177         --rename-member=st_mtime=st_mtime_                    \
178         --rename-namespace=Mono.Unix.Native=Mono.Posix        \
179         --library=MonoPosixHelper                             \
180         $(mcs_topdir_from_srcdir)/class/lib/net_4_x/Mono.Posix.dll map
182 # Useful if mono is compiled with --enable-shared=no
183 patch-libtool:
184         cp "../libtool" .
185         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
186         echo "LIBTOOL = bash ./libtool" > 1
187         echo "LTCOMPILE = bash ./libtool --mode=compile $(COMPILE)" >> 1
188         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2
189         sed -e 's,LTCOMPILE =,LTCOMPILE2 =,g' 2 > 3
190         cat 1 3 > Makefile
191         touch *.c