summaryrefslogtreecommitdiffstats
path: root/test/module.defs
blob: 7124895bfd46ab0214cb8fc28da1b44222e76766 (plain)
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
$(eval $(call import.MODULE.defs,TEST,test,LIBHB))
$(eval $(call import.GCC,TEST))

TEST.src/   = $(SRC/)test/
TEST.build/ = $(BUILD/)test/

TEST.c   = $(wildcard $(TEST.src/)*.c)
TEST.c.o = $(patsubst $(SRC/)%.c,$(BUILD/)%.o,$(TEST.c))

TEST.exe = $(BUILD/)$(call TARGET.exe,$(HB.name)CLI)

TEST.GCC.L = $(CONTRIB.build/)lib

TEST.libs = $(LIBHB.a)

TEST.GCC.l = \
        a52 ass avcodec avformat avutil avresample dvdnav dvdread \
        fontconfig freetype fribidi mpeg2 mp3lame ogg \
        samplerate swscale theoraenc theoradec vorbis vorbisenc x264 \
        bluray xml2 bz2 z

ifeq (1,$(FEATURE.qsv))
    TEST.GCC.D += USE_QSV HAVE_THREADS=1
endif

TEST.GCC.l += $(foreach m,$(MODULES.NAMES),$($m.OSL.libs))

TEST.install.exe = $(DESTDIR)$(PREFIX/)bin/$(notdir $(TEST.exe))

###############################################################################

TEST.out += $(TEST.c.o)
TEST.out += $(TEST.exe)

BUILD.out += $(TEST.out)
BUILD.out += $(TEST.install.exe)

###############################################################################

TEST.GCC.I += $(LIBHB.GCC.I)

ifeq ($(BUILD.system),darwin)
    TEST.GCC.f += IOKit CoreServices AudioToolbox
    TEST.GCC.l += iconv
else ifeq ($(BUILD.system),linux)
    TEST.GCC.l += pthread dl m
else ifeq ($(BUILD.system),solaris)
    TEST.GCC.l += pthread nsl socket iconv
    TEST.GCC.D += _POSIX_C_SOURCE=200112L __EXTENSIONS__
else ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
ifeq ($(HAS.dlfcn),1)
    TEST.GCC.l += dl
endif
ifeq (1,$(FEATURE.hwd))
    TEST.GCC.D += USE_HWD
endif
    TEST.GCC.l += pthreadGC2 iconv ws2_32
    TEST.GCC.D += PTW32_STATIC_LIB
    TEST.GCC.args.extra.exe++ += -static
endif #   (1-mingw,$(BUILD.cross)-$(BUILD.system))