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: 0b6cc241ac2709cd3f575aa120cebce65963a1b4 (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
if PLATFORM_WIN32
lib_LTLIBRARIES= 
else
lib_LTLIBRARIES= libMonoPosixHelper.la
endif

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

MPH_H = mph.h

MPH_SOURCE = \
	dirent.c \
	errno.c \
	fcntl.c \
	grp.c \
	map.c \
	pwd.c \
	old-map.c \
	stdio.c \
	stdlib.c \
	sys-mman.c \
	sys-mount.c \
	sys-sendfile.c \
	sys-stat.c \
	sys-wait.c \
	time.c \
	unistd.c

if HAVE_ZLIB
libMonoPosixHelper_la_SOURCES = \
	$(MPH_SOURCE) zlib_macros.c

libMonoPosixHelper_la_LIBADD = -lz
else
libMonoPosixHelper_la_SOURCES = $(MPH_SOURCE)
endif

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

EXTRA_DIST = \
	$(MPH_H)

# 
# Use this target to refresh the values in map.[ch]
#
refresh:
	mono ../../mcs/class/Mono.Posix/Mono.Posix/make-map.exe ../../mcs/class/lib/Mono.Posix.dll map