Makefile revision 269847
1# $FreeBSD: stable/10/usr.bin/svn/lib/libapr/Makefile 269847 2014-08-12 01:40:11Z peter $
2
3.include "${.CURDIR}/../Makefile.inc"
4
5INTERNALLIB=	yes
6LIB=		apr
7SRCS=		apr_cpystrn.c apr_fnmatch.c apr_getpass.c apr_hash.c apr_skiplist.c \
8		apr_pools.c apr_random.c apr_snprintf.c apr_strings.c \
9		apr_strnatcmp.c apr_strtok.c apr_tables.c buffer.c \
10		builtins.c charset.c common.c copy.c dir.c dso.c env.c \
11		epoll.c errorcodes.c fileacc.c filedup.c filepath.c \
12		filepath_util.c filestat.c flock.c fullrw.c getopt.c \
13		global_mutex.c groupinfo.c ia32.c inet_ntop.c inet_pton.c \
14		kqueue.c mktemp.c mmap.c multicast.c mutex.c open.c \
15		otherchild.c pipe.c poll.c pollcb.c pollset.c port.c \
16		ppc.c proc.c proc_mutex.c procsup.c rand.c readwrite.c \
17		s390.c seek.c select.c sendrecv.c sha2.c sha2_glue.c \
18		shm.c signals.c sockaddr.c socket_util.c sockets.c \
19		sockopt.c solaris.c start.c tempdir.c thread.c thread_cond.c \
20		thread_mutex.c thread_rwlock.c threadpriv.c time.c \
21		timestr.c userinfo.c version.c waitio.c z_asio.c
22
23NOMAN=		internalonly
24
25.PATH:		${APR}/atomic/unix ${APR}/dso/unix ${APR}/file_io/unix \
26		${APR}/locks/unix ${APR}/memory/unix ${APR}/misc/unix \
27		${APR}/mmap/unix ${APR}/network_io/unix ${APR}/passwd \
28		${APR}/poll/unix ${APR}/random/unix ${APR}/shmem/unix \
29		${APR}/strings ${APR}/support/unix ${APR}/tables \
30		${APR}/threadproc/unix ${APR}/time/unix ${APR}/user/unix \
31		${APR}/include
32
33CFLAGS+= 	-DHAVE_CONFIG_H -I${.CURDIR} \
34		-I${APR}/include/arch/unix -I${APR}/include
35
36.include <bsd.lib.mk>
37