Makefile revision 362181
1# $FreeBSD: stable/11/usr.bin/svn/lib/libapr/Makefile 362181 2020-06-14 18:49:06Z dim $
2
3.include "${.CURDIR}/../Makefile.inc"
4
5INTERNALLIB=	yes
6LIB=		apr
7SRCS=		apr_cpystrn.c \
8		apr_escape.c \
9		apr_fnmatch.c \
10		apr_getpass.c \
11		apr_hash.c \
12		apr_pools.c \
13		apr_random.c \
14		apr_skiplist.c \
15		apr_snprintf.c \
16		apr_strings.c \
17		apr_strnatcmp.c \
18		apr_strtok.c \
19		apr_tables.c \
20		buffer.c \
21		builtins.c \
22		builtins64.c \
23		charset.c \
24		common.c \
25		copy.c \
26		dir.c \
27		dso.c \
28		env.c \
29		epoll.c \
30		errorcodes.c \
31		fileacc.c \
32		filedup.c \
33		filepath.c \
34		filepath_util.c \
35		filestat.c \
36		flock.c \
37		fullrw.c \
38		getopt.c \
39		global_mutex.c \
40		groupinfo.c \
41		ia32.c \
42		inet_ntop.c \
43		inet_pton.c \
44		kqueue.c \
45		mktemp.c \
46		mmap.c \
47		multicast.c \
48		mutex.c \
49		mutex64.c \
50		open.c \
51		otherchild.c \
52		pipe.c \
53		poll.c \
54		pollcb.c \
55		pollset.c \
56		port.c \
57		ppc.c \
58		proc.c \
59		proc_mutex.c \
60		procsup.c \
61		rand.c \
62		readwrite.c \
63		s390.c \
64		seek.c \
65		select.c \
66		sendrecv.c \
67		sha2.c \
68		sha2_glue.c \
69		shm.c \
70		signals.c \
71		sockaddr.c \
72		socket_util.c \
73		sockets.c \
74		sockopt.c \
75		solaris.c \
76		start.c \
77		tempdir.c \
78		thread.c \
79		thread_cond.c \
80		thread_mutex.c \
81		thread_rwlock.c \
82		threadpriv.c \
83		time.c \
84		timestr.c \
85		userinfo.c \
86		version.c \
87		waitio.c \
88		wakeup.c \
89		z_asio.c
90
91.PATH:		${APR}/atomic/unix \
92		${APR}/dso/unix \
93		${APR}/encoding \
94		${APR}/file_io/unix \
95		${APR}/locks/unix \
96		${APR}/memory/unix \
97		${APR}/misc/unix \
98		${APR}/mmap/unix \
99		${APR}/network_io/unix \
100		${APR}/passwd \
101		${APR}/poll/unix \
102		${APR}/random/unix \
103		${APR}/shmem/unix \
104		${APR}/strings \
105		${APR}/support/unix \
106		${APR}/tables \
107		${APR}/threadproc/unix \
108		${APR}/time/unix \
109		${APR}/user/unix \
110		${APR}/include
111
112CFLAGS+=	-DHAVE_CONFIG_H \
113		-I${.CURDIR} \
114		-I${APR}/include/arch/unix \
115		-I${APR}/include/private \
116		-I${APR}/include
117
118.include <bsd.lib.mk>
119