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
|
include ../extra.mk
SUBDIRS = ${TESTPLUGIN}
PROG_NOINST = tests${PROG_SUFFIX}
SRCS = OFArrayTests.m \
OFCharacterSetTests.m \
OFColorTests.m \
OFConcreteArrayTests.m \
OFConcreteMutableArrayTests.m \
OFDateTests.m \
OFIRITests.m \
OFInvocationTests.m \
OFJSONTests.m \
OFMatrix4x4Tests.m \
OFMethodSignatureTests.m \
OFMutableArrayTests.m \
OFNumberTests.m \
OFPBKDF2Tests.m \
OFPropertyListTests.m \
OFScryptTests.m \
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS}
SRCS_PLUGINS = OFPluginTests.m
SRCS_SOCKETS = OFSocketTests.m
include ../buildsys.mk
.PHONY: run run-on-ios run-on-android
run:
rm -f libobjfw.so.${OBJFW_LIB_MAJOR}
rm -f libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}
rm -f objfw${OBJFW_LIB_MAJOR}.dll libobjfw.${OBJFW_LIB_MAJOR}.dylib
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR}
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}
|
>
>
>
|
>
>
>
>
|
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
|
include ../extra.mk
SUBDIRS = ${TESTPLUGIN}
CLEAN = testfile_bin.m
PROG_NOINST = tests${PROG_SUFFIX}
SRCS = OFArrayTests.m \
OFCharacterSetTests.m \
OFColorTests.m \
OFConcreteArrayTests.m \
OFConcreteMutableArrayTests.m \
OFCryptographicHashTests.m \
OFDateTests.m \
OFIRITests.m \
OFInvocationTests.m \
OFJSONTests.m \
OFMatrix4x4Tests.m \
OFMethodSignatureTests.m \
OFMutableArrayTests.m \
OFNumberTests.m \
OFPBKDF2Tests.m \
OFPropertyListTests.m \
OFScryptTests.m \
${USE_SRCS_PLUGINS} \
${USE_SRCS_SOCKETS} \
testfile_bin.m
SRCS_PLUGINS = OFPluginTests.m
SRCS_SOCKETS = OFSocketTests.m
include ../buildsys.mk
testfile_bin.m: testfile.bin
${SHELL} ../utils/objfw-embed testfile.bin testfile.bin $@
.PHONY: run run-on-ios run-on-android
run:
rm -f libobjfw.so.${OBJFW_LIB_MAJOR}
rm -f libobjfw.so.${OBJFW_LIB_MAJOR_MINOR}
rm -f objfw${OBJFW_LIB_MAJOR}.dll libobjfw.${OBJFW_LIB_MAJOR}.dylib
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR}
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}
|