forked from Mirrors/freeswitch
117 lines
4.1 KiB
Makefile
117 lines
4.1 KiB
Makefile
|
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 = \
|
||
|
testlockperf@EXEEXT@ \
|
||
|
testshmproducer@EXEEXT@ \
|
||
|
testshmconsumer@EXEEXT@ \
|
||
|
testmutexscope@EXEEXT@ \
|
||
|
testall@EXEEXT@
|
||
|
|
||
|
OTHER_PROGRAMS = sendfile@EXEEXT@
|
||
|
|
||
|
PROGRAMS = $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) $(OTHER_PROGRAMS)
|
||
|
|
||
|
TARGETS = $(PROGRAMS)
|
||
|
|
||
|
# bring in rules.mk for standard functionality
|
||
|
@INCLUDE_RULES@
|
||
|
|
||
|
LOCAL_LIBS=../lib@APR_LIBNAME@.la
|
||
|
|
||
|
CLEAN_TARGETS = testfile.tmp mod_test.slo proc_child@EXEEXT@ occhild@EXEEXT@ \
|
||
|
readchild@EXEEXT@ tryread@EXEEXT@ sockchild@EXEEXT@ \
|
||
|
globalmutexchild@EXEEXT@ lfstests/large.bin \
|
||
|
data/test*.txt data/test*.dat
|
||
|
CLEAN_SUBDIRS = internal
|
||
|
|
||
|
INCDIR=../include
|
||
|
INCLUDES=-I$(INCDIR) -I$(srcdir)/../include
|
||
|
|
||
|
# 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) @LT_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
|
||
|
|
||
|
occhild@EXEEXT@: occhild.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) occhild.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
sockchild@EXEEXT@: sockchild.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) sockchild.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
readchild@EXEEXT@: readchild.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) readchild.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
globalmutexchild@EXEEXT@: globalmutexchild.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) globalmutexchild.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
tryread@EXEEXT@: tryread.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) tryread.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) $(LTFLAGS) --mode=compile $(COMPILE) -prefer-pic -c $(srcdir)/mod_test.c && touch $@
|
||
|
|
||
|
mod_test.la: mod_test.slo $(LOCAL_LIBS)
|
||
|
$(LIBTOOL) $(LTFLAGS) --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) $(LTFLAGS) --mode=link $(COMPILE) -rpath `pwd` -avoid-version mod_test.lo $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
testlockperf@EXEEXT@: testlockperf.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) testlockperf.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
sendfile@EXEEXT@: sendfile.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) sendfile.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)
|
||
|
|
||
|
testmutexscope@EXEEXT@: testmutexscope.lo $(LOCAL_LIBS)
|
||
|
$(LINK_PROG) testmutexscope.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
TESTS = testutil.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 testfnmatch.lo \
|
||
|
testatomic.lo testflock.lo testshm.lo testsock.lo testglobalmutex.lo \
|
||
|
teststrnatcmp.lo testfilecopy.lo testtemp.lo testlfs.lo
|
||
|
|
||
|
testall@EXEEXT@: $(TESTS) mod_test.la libmod_test.la occhild@EXEEXT@ \
|
||
|
readchild@EXEEXT@ abts.lo proc_child@EXEEXT@ \
|
||
|
tryread@EXEEXT@ sockchild@EXEEXT@ globalmutexchild@EXEEXT@ \
|
||
|
$(LOCAL_LIBS)
|
||
|
$(LINK_PROG) $(TESTS) abts.lo $(LOCAL_LIBS) $(ALL_LIBS)
|
||
|
|
||
|
|
||
|
# DO NOT REMOVE
|