forked from apache/apr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
130 lines (95 loc) · 4.33 KB
/
Makefile.in
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
srcdir = @srcdir@
VPATH = @srcdir@
# PROGRAMS includes all test programs built on this platform.
# STDTEST_PORTABLE
# test programs invoked via standard user interface, run on all platforms
# STDTEST_NONPORTABLE
# test programs invoked via standard user interface, not portable
# OTHER_PROGRAMS
# programs such as sendfile, that have to be invoked in a special sequence
# or with special parameters
STDTEST_PORTABLE = \
testflock@EXEEXT@ \
testsock@EXEEXT@ \
testlockperf@EXEEXT@ \
testshmproducer@EXEEXT@ \
testshmconsumer@EXEEXT@ \
testatomic@EXEEXT@ \
testmutexscope@EXEEXT@ \
testall@EXEEXT@
STDTEST_NONPORTABLE = \
testshm@EXEEXT@ \
testglobalmutex@EXEEXT@
OTHER_PROGRAMS = client@EXEEXT@ sendfile@EXEEXT@ \
server@EXEEXT@
PROGRAMS = $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) $(OTHER_PROGRAMS)
TARGETS = $(PROGRAMS)
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
LOCAL_LIBS=../lib@[email protected]
CLEAN_TARGETS = testfile.tmp mod_test.slo proc_child@EXEEXT@ occhild@EXEEXT@ \
readchild@EXEEXT@
CLEAN_SUBDIRS = internal
INCDIR=../include
INCLUDES=-I$(INCDIR)
# link programs using -no-install to get real executables not
# libtool wrapper scripts which link an executable when first run.
LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) -no-install $(ALL_LDFLAGS) -o $@
check: $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
for prog in $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE); do \
./$$prog; \
if test $$? = 255; then \
echo "$$prog failed"; \
break; \
fi; \
done
testflock@EXEEXT@: testflock.lo $(LOCAL_LIBS)
$(LINK_PROG) testflock.lo $(LOCAL_LIBS) $(ALL_LIBS)
occhild@EXEEXT@: occhild.lo $(LOCAL_LIBS)
$(LINK_PROG) occhild.lo $(LOCAL_LIBS) $(ALL_LIBS)
readchild@EXEEXT@: readchild.lo $(LOCAL_LIBS)
$(LINK_PROG) readchild.lo $(LOCAL_LIBS) $(ALL_LIBS)
proc_child@EXEEXT@: proc_child.lo $(LOCAL_LIBS)
$(LINK_PROG) proc_child.lo $(LOCAL_LIBS) $(ALL_LIBS)
# FIXME: -prefer-pic is only supported with libtool-1.4+
mod_test.slo: $(srcdir)/mod_test.c
$(LIBTOOL) --mode=compile $(COMPILE) -prefer-pic -c $(srcdir)/mod_test.c && touch $@
mod_test.la: mod_test.slo $(LOCAL_LIBS)
$(LIBTOOL) --mode=link $(COMPILE) -rpath `pwd` -avoid-version -module mod_test.lo $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@
libmod_test.la: mod_test.slo $(LOCAL_LIBS)
$(LIBTOOL) --mode=link $(COMPILE) -rpath `pwd` -avoid-version mod_test.lo $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@
testlockperf@EXEEXT@: testlockperf.lo $(LOCAL_LIBS)
$(LINK_PROG) testlockperf.lo $(LOCAL_LIBS) $(ALL_LIBS)
testsock@EXEEXT@: testsock.lo client@EXEEXT@ server@EXEEXT@ sendfile@EXEEXT@ $(LOCAL_LIBS)
$(LINK_PROG) testsock.lo $(LOCAL_LIBS) $(ALL_LIBS)
client@EXEEXT@: client.lo $(LOCAL_LIBS)
$(LINK_PROG) client.lo $(LOCAL_LIBS) $(ALL_LIBS)
server@EXEEXT@: server.lo $(LOCAL_LIBS)
$(LINK_PROG) server.lo $(LOCAL_LIBS) $(ALL_LIBS)
sendfile@EXEEXT@: sendfile.lo $(LOCAL_LIBS)
$(LINK_PROG) sendfile.lo $(LOCAL_LIBS) $(ALL_LIBS)
testshm@EXEEXT@: testshm.lo $(LOCAL_LIBS) testshmproducer@EXEEXT@ testshmconsumer@EXEEXT@
$(LINK_PROG) testshm.lo $(LOCAL_LIBS) $(ALL_LIBS)
testshmproducer@EXEEXT@: testshmproducer.lo $(LOCAL_LIBS)
$(LINK_PROG) testshmproducer.lo $(LOCAL_LIBS) $(ALL_LIBS)
testshmconsumer@EXEEXT@: testshmconsumer.lo $(LOCAL_LIBS)
$(LINK_PROG) testshmconsumer.lo $(LOCAL_LIBS) $(ALL_LIBS)
testprocmutex@EXEEXT@: testprocmutex.lo $(LOCAL_LIBS)
$(LINK_PROG) testprocmutex.lo $(LOCAL_LIBS) $(ALL_LIBS)
testglobalmutex@EXEEXT@: testglobalmutex.lo $(LOCAL_LIBS)
$(LINK_PROG) testglobalmutex.lo $(LOCAL_LIBS) $(ALL_LIBS)
testatomic@EXEEXT@: testatomic.lo $(LOCAL_LIBS)
$(LINK_PROG) testatomic.lo $(LOCAL_LIBS) $(ALL_LIBS)
testmutexscope@EXEEXT@: testmutexscope.lo $(LOCAL_LIBS)
$(LINK_PROG) testmutexscope.lo $(LOCAL_LIBS) $(ALL_LIBS)
TESTS = testall.lo testtime.lo teststr.lo testvsn.lo testipsub.lo \
testmmap.lo testud.lo testtable.lo testsleep.lo testpools.lo \
testfmt.lo testfile.lo testdir.lo testfileinfo.lo testrand.lo \
testdso.lo testoc.lo testdup.lo testsockets.lo testproc.lo \
testpoll.lo testlock.lo testsockopt.lo testpipe.lo testthread.lo \
testhash.lo testargs.lo testnames.lo testuser.lo testpath.lo \
testenv.lo testprocmutex.lo testrand2.lo
testall: $(TESTS) mod_test.la libmod_test.la occhild@EXEEXT@ \
readchild@EXEEXT@ CuTest.lo proc_child@EXEEXT@ $(LOCAL_LIBS)
$(LINK_PROG) $(TESTS) CuTest.lo $(LOCAL_LIBS) $(ALL_LIBS)
# DO NOT REMOVE