Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « support - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee86a511e5c7cd1310d7fa153b8f41fb427b3133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
lib_LTLIBRARIES= libMonoPosixHelper.la

INCLUDES = \
	$(GLIB_CFLAGS) \
	-I$(top_srcdir)

# Source code which helps implement the ANSI C standards, and thus *should* be
# portable to any platform having a C compiler.
MPH_C_SOURCE =   \
	map.c          \
	map.h          \
	mph.h          \
	signal.c       \
	stdio.c        \
	stdlib.c

# Source code which helps implement POSIX and other related Unix standards,
# and *may* be portable between Unix platforms.
MPH_UNIX_SOURCE = \
	dirent.c 	\
	errno.c 	\
	fcntl.c 	\
	fstab.c   \
	grp.c 		\
	macros.c	\
	old-map.c 	\
	old-map.h 	\
	pwd.c 		\
	serial.c	\
	sys-mman.c 	\
	sys-sendfile.c 	\
	sys-stat.c 	\
	sys-statvfs.c 	\
	sys-time.c 	\
	sys-wait.c 	\
	time.c 		\
	unistd.c	 \
	utime.c    \
	x-struct-str.c

if PLATFORM_WIN32
MPH_SOURCE = $(MPH_C_SOURCE)
MPH_LIBS   =
else
MPH_SOURCE = $(MPH_C_SOURCE) $(MPH_UNIX_SOURCE)
MPH_LIBS   = $(GLIB_LIBS)
endif

if HAVE_ZLIB
Z_SOURCE = \
	zlib_macros.c
Z_LIBS   = \
	-lz
else
Z_SOURCE = 
Z_LIBS   = 
endif

libMonoPosixHelper_la_SOURCES = \
	$(MPH_SOURCE) \
	$(Z_SOURCE)

libMonoPosixHelper_la_LIBADD = \
	$(MPH_LIBS) \
	$(Z_LIBS)

libMonoPosixHelper_la_LDFLAGS = -no-undefined -version-info 1:0:1

# 
# Use this target to refresh the values in map.[ch]
#
refresh:
	$(top_builddir)/runtime/mono-wrapper $(mcs_topdir)/class/Mono.Posix/Mono.Posix/make-map.exe $(mcs_topdir)/class/lib/Mono.Posix.dll map