Deleted Added
full compact
Makefile (302408) Makefile (362181)
1# $FreeBSD: stable/11/usr.bin/svn/lib/libapr/Makefile 266736 2014-05-27 07:16:43Z peter $
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
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
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
22
90
23.PATH: ${APR}/atomic/unix ${APR}/dso/unix ${APR}/file_io/unix \
24 ${APR}/locks/unix ${APR}/memory/unix ${APR}/misc/unix \
25 ${APR}/mmap/unix ${APR}/network_io/unix ${APR}/passwd \
26 ${APR}/poll/unix ${APR}/random/unix ${APR}/shmem/unix \
27 ${APR}/strings ${APR}/support/unix ${APR}/tables \
28 ${APR}/threadproc/unix ${APR}/time/unix ${APR}/user/unix \
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 \
29 ${APR}/include
30
110 ${APR}/include
111
31CFLAGS+= -DHAVE_CONFIG_H -I${.CURDIR} \
32 -I${APR}/include/arch/unix -I${APR}/include
112CFLAGS+= -DHAVE_CONFIG_H \
113 -I${.CURDIR} \
114 -I${APR}/include/arch/unix \
115 -I${APR}/include/private \
116 -I${APR}/include
33
34.include <bsd.lib.mk>
117
118.include <bsd.lib.mk>